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
{{ message }}
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Hi @ryanhiebert. I've been working on tox-factor, which is a stripped down version of tox-travis's envlist matching feature (e.g. invoked as tox -f py37 to match all py37-* testenvs, instead of matching from Travis environment factors).
Anyway, like tox-travis, tox-factor ultimately works by setting the config.envlist in the tox_configure hook. However, this overrides the parallelized tox subprocesses, which have their testenv set via the TOX_PARALLEL_ENV env var. The fix is to ensure env matching only performs in the main tox process, not the parallelized subprocesses. For reference:
Hi @ryanhiebert. I've been working on tox-factor, which is a stripped down version of tox-travis's envlist matching feature (e.g. invoked as
tox -f py37
to match allpy37-*
testenvs, instead of matching from Travis environment factors).Anyway, like tox-travis, tox-factor ultimately works by setting the
config.envlist
in thetox_configure
hook. However, this overrides the parallelized tox subprocesses, which have their testenv set via theTOX_PARALLEL_ENV
env var. The fix is to ensure env matching only performs in the main tox process, not the parallelized subprocesses. For reference:The text was updated successfully, but these errors were encountered: