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 a6451af commit de6f79aCopy full SHA for de6f79a
src/tox_gh_actions/plugin.py
@@ -211,7 +211,7 @@ 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:
+ 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
0 commit comments