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
Run specific tox envs in CI and locally, like tox -e docs to invoke sphinx with the right args including for autobuild
Run tox -p to do the tasks that CI will run, but in parallel in a single terminal under a single version of python
Do this without making a venv for each env with tox-direct
We considered using nox, but it doesn't have a parallel option at the moment as per wntrblm/nox#544
We would like to add the ability to do something like tox -e lock to generate dev-requirements.txt as specified in DiamondLightSource/blueapi#499
To do this we should should update to tox 4 and work out what changes are needed to support the current workflow, and also work out how to add a lock command that will not be run by the equivalent of tox -p
The text was updated successfully, but these errors were encountered:
At the moment we use tox to:
tox -e docs
to invokesphinx
with the right args including forautobuild
tox -p
to do the tasks that CI will run, but in parallel in a single terminal under a single version of pythontox-direct
We considered using
nox
, but it doesn't have a parallel option at the moment as per wntrblm/nox#544We would like to add the ability to do something like
tox -e lock
to generatedev-requirements.txt
as specified in DiamondLightSource/blueapi#499To do this we should should update to tox 4 and work out what changes are needed to support the current workflow, and also work out how to add a
lock
command that will not be run by the equivalent oftox -p
The text was updated successfully, but these errors were encountered: