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
Using GitHub Actions, my projects use one CI run per Python version. Within these runs I'd want to run just the environments matching the current Python version.
I'd like to suggest supporting this syntax to declare "all environments that match the current version of Python":
tox -f py
This would be analogous to tox -e py, which means "create a tox environment whose specifier is the current version of python". (This is only the current version, e.g. py38 even when it doesn't exist in defined environments and only as e.g. py38-djangoXX...).
The text was updated successfully, but these errors were encountered:
Using GitHub Actions, my projects use one CI run per Python version. Within these runs I'd want to run just the environments matching the current Python version.
I currently do this with a bit of shell:
In this discussion on django/daphne, I was introduced to tox-factor. It seems it would be possible to shorten my shell down to:
I'd like to suggest supporting this syntax to declare "all environments that match the current version of Python":
This would be analogous to
tox -e py
, which means "create a tox environment whose specifier is the current version of python". (This is only the current version, e.g. py38 even when it doesn't exist in defined environments and only as e.g.py38-djangoXX
...).The text was updated successfully, but these errors were encountered: