We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d73948 commit cf4b3e8Copy full SHA for cf4b3e8
src/tox/config/loader/ini/factor.py
@@ -64,6 +64,7 @@ def expand_factors(value: str) -> Iterator[tuple[list[list[tuple[str, bool]]] |
64
65
def find_factor_groups(value: str) -> Iterator[list[tuple[str, bool]]]:
66
"""Transform '{py,!pi}-{a,b},c' to [{'py', 'a'}, {'py', 'b'}, {'pi', 'a'}, {'pi', 'b'}, {'c'}]."""
67
+ value = expand_ranges(value)
68
for env in expand_env_with_negation(value):
69
result = [name_with_negate(f) for f in env.split("-")]
70
yield result
0 commit comments