Skip to content

Commit

Permalink
Excluding more temporary directories from the manifest. Added plugins…
Browse files Browse the repository at this point in the history
… back in to enable isolated tests
  • Loading branch information
anselor committed Jun 17, 2021
1 parent da23765 commit 7fecaa7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
10 changes: 6 additions & 4 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
include LICENSE README.md CHANGELOG.md noxfile.py Pipfile
include LICENSE README.md CHANGELOG.md noxfile.py tasks.py Pipfile
recursive-include examples *
recursive-include tests *
recursive-include docs *
recursive-exclude docs/_build *
recursive-exclude plugins *
exclude .github .gitignore azure-pipelines.yml tasks.py
prune .github
prune docs/_build
prune docs/.nox
exclude .github .gitignore azure-pipelines.yml
global-exclude htmlcov/** .coverage* __pycache__/** .gitignore
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ def docs(context, builder='html'):
def doc8(context):
"""Check documentation with doc8"""
with context.cd(TASK_ROOT_STR):
context.run('doc8 docs --ignore-path docs/_build')
context.run('doc8 docs --ignore-path docs/_build --ignore-path docs/.nox')


namespace.add_task(doc8)
Expand Down

0 comments on commit 7fecaa7

Please sign in to comment.