-
-
Notifications
You must be signed in to change notification settings - Fork 549
Support glob patterns and factors in 'depends' option #1152
Copy link
Copy link
Closed
Labels
feature:newsomething does not exist yet, but shouldsomething does not exist yet, but shouldhelp:wantedIssues that have been acknowledged, a solution determined and a PR might likely be accepted.Issues that have been acknowledged, a solution determined and a PR might likely be accepted.level:mediumrought estimate that this might be neither easy nor hard to implementrought estimate that this might be neither easy nor hard to implement
Description
Addition of parallel runs and dependencies is awesome, but we quite miss any support for factors or glob patterns in the depends option.
In case we have several environments
[tox]
envlist = clean-coverage,py27,py35,py36,py37,compute-coverage
we have to set dependencies for compute-coverage individually
[testenv:compute-coverage]
depends = py27,py35,py36,py37
which is error prone and not quite comfortable.
I suggest to allow glob patterns
[testenv:compute-coverage]
depends = py*
and factors similarly to other parts of configuration.
I don't quite feel I would be able to provide a PR.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
feature:newsomething does not exist yet, but shouldsomething does not exist yet, but shouldhelp:wantedIssues that have been acknowledged, a solution determined and a PR might likely be accepted.Issues that have been acknowledged, a solution determined and a PR might likely be accepted.level:mediumrought estimate that this might be neither easy nor hard to implementrought estimate that this might be neither easy nor hard to implement