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
The option -a, --listenvs-all does not list environments defined implicitly inside the [testenv] section in the INI file through the dict-like syntax of commands.
It was introduced with #495 to fix #271.
Versions: tox 2.9.1 with Python 2.7.10 on macOS Sierra.
As a side note it would be nice to have the possibility to take advantage of the expanding syntax to define envlist but mark some of them as additional so that they do not run by default when executing tox alone.
Hi @volans- thanks for the report, the original request is a duplicate of #505 and as you can see there, it is not without it's thorns. Closing this one to keep the discussion there.
The second one also looks vaguely familiar. I think we have a similar request already, but I can't find it atm. Maybe you want to poke around a bit in the issues and check out the discussion there?
@obestwalter thanks for the quick reply, I searched a bit for similar issues before opening this one but didn't find the #505, sorry for the added noise. I'll look for the other one too.
The option
-a, --listenvs-all
does not list environments defined implicitly inside the[testenv]
section in the INI file through the dict-like syntax ofcommands
.It was introduced with #495 to fix #271.
Versions: tox
2.9.1
with Python2.7.10
on macOS Sierra.Repro setup:
Expected output:
Current output:
It looks to me that the way the
extra
environment list is generated in https://github.com/tox-dev/tox/blob/master/tox/session.py#L652 takes account only of the INI sections in thetox.ini
file. If I add a section[testenv:extra]
, then theextra
environment is properly listed.The text was updated successfully, but these errors were encountered: