You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When developing I run nox -r before finishing a commit so I know that I can push without problems. Whilst I find and fix most errors, docs and cover never complete successfully. This is causing fractured PRs, as I don't know coverage has fallen - as it always errors - until it's too late.
Coverage
Coverage fails to run on the following lines.
nox/virtualenv.py
189 (186->189)
Changing this to a ternary allows for 100% coverage.
Change the Python version to 3.7 because sphinx-autobuild, which relies on tornado, no longer works on Windows on 3.8.
Sphinx fails to follow the reference to changelog and contributing.
Since the files don't have a heading this causes some warnings. Since the -W flag is passed this elevates them to errors.
When developing I run
nox -r
before finishing a commit so I know that I can push without problems. Whilst I find and fix most errors, docs and cover never complete successfully. This is causing fractured PRs, as I don't know coverage has fallen - as it always errors - until it's too late.Coverage
Coverage fails to run on the following lines.
nox/virtualenv.py
Changing this to a ternary allows for 100% coverage.
nox/workflow.py
Docs
Change
rm -rf
toshutil.rmtree
.Change the Python version to 3.7 because sphinx-autobuild, which relies on tornado, no longer works on Windows on 3.8.
Sphinx fails to follow the reference to changelog and contributing.
Since the files don't have a heading this causes some warnings. Since the
-W
flag is passed this elevates them to errors.I have found two solutions:
include
.-W
flag on Windows.Most of the fixes are rather straight forward. However Docs (3) seems controversial, how would you like me to approach it?
The text was updated successfully, but these errors were encountered: