Setting Parallel values in tox.ini rather than at the command line level #2990
-
|
Hello, Is it possible to set the parallel value inside tox.ini? Looking through the documentation there is no mention of a parallel option -- only a CLI argument. Something like Of course this can be set when calling tox with |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
Parallel execution is CLI-only — there is no If you want a default, use a shell alias, a Makefile target, or a |
Beta Was this translation helpful? Give feedback.
Parallel execution is CLI-only — there is no
tox.iniconfiguration for it. The intended way is via the CLI:tox run-parallelortox run --parallel.If you want a default, use a shell alias, a Makefile target, or a
scriptssection in yourpyproject.toml(e.g. viahatchor similar).