File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 1- include LICENSE README.md CHANGELOG.md noxfile.py Pipfile
1+ include LICENSE README.md CHANGELOG.md noxfile.py tasks.py Pipfile
22recursive-include examples *
33recursive-include tests *
44recursive-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
Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ def docs(context, builder='html'):
152152def 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
158158namespace .add_task (doc8 )
You can’t perform that action at this time.
0 commit comments