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
This is problematic if you want to set up your editor for running your tests before you take the next step with nox to run the tests on all installed versions of Python.
We could create a test optional dependency so that we can change:
Right now the only way to run the tests outside of running
nox -s tests
is to manually install what's hard-coded there:packaging/noxfile.py
Line 31 in 44efc1f
This is problematic if you want to set up your editor for running your tests before you take the next step with nox to run the tests on all installed versions of Python.
We could create a
test
optional dependency so that we can change:packaging/noxfile.py
Line 32 in 44efc1f
to be
.[test]
. And I'm specifically suggestingtest
overtests
because that's what the core metadata chose as a name.We could also do this for documentation with a
doc
extra.The text was updated successfully, but these errors were encountered: