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.
2 parents 83f89d1 + b56c38e commit a6451afCopy full SHA for a6451af
src/tox_gh_actions/plugin.py
@@ -211,6 +211,10 @@ def is_log_grouping_enabled(options: Parsed) -> bool:
211
elif isinstance(options.parallel, int) and options.parallel > 0:
212
# Case for `tox p` or `tox -p <num>`
213
return False
214
+ elif isinstance(options.parallel, int) and options.parallel = 0:
215
+ # Case for `tox` or `tox -p 0`
216
+ # tox will disable the parallel execution
217
+ return True
218
logger.warning(
219
"tox-gh-actions couldn't understand the parallel option. "
220
"ignoring the given option: %s",
0 commit comments