Skip to content

Commit 7fecaa7

Browse files
committed
Excluding more temporary directories from the manifest. Added plugins back in to enable isolated tests
1 parent da23765 commit 7fecaa7

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

Diff for: MANIFEST.in

+6-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1-
include LICENSE README.md CHANGELOG.md noxfile.py Pipfile
1+
include LICENSE README.md CHANGELOG.md noxfile.py tasks.py Pipfile
22
recursive-include examples *
33
recursive-include tests *
44
recursive-include docs *
5-
recursive-exclude docs/_build *
6-
recursive-exclude plugins *
7-
exclude .github .gitignore azure-pipelines.yml tasks.py
5+
prune .github
6+
prune docs/_build
7+
prune docs/.nox
8+
exclude .github .gitignore azure-pipelines.yml
9+
global-exclude htmlcov/** .coverage* __pycache__/** .gitignore

Diff for: tasks.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ def docs(context, builder='html'):
152152
def doc8(context):
153153
"""Check documentation with doc8"""
154154
with context.cd(TASK_ROOT_STR):
155-
context.run('doc8 docs --ignore-path docs/_build')
155+
context.run('doc8 docs --ignore-path docs/_build --ignore-path docs/.nox')
156156

157157

158158
namespace.add_task(doc8)

0 commit comments

Comments
 (0)