Skip to content

Commit 9359c52

Browse files
authored
Merge pull request #183 from adrien-berchet/fix-syntax-error
Fix SyntaxError introduced in a6451af
2 parents a6451af + de6f79a commit 9359c52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tox_gh_actions/plugin.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ def is_log_grouping_enabled(options: Parsed) -> bool:
211211
elif isinstance(options.parallel, int) and options.parallel > 0:
212212
# Case for `tox p` or `tox -p <num>`
213213
return False
214-
elif isinstance(options.parallel, int) and options.parallel = 0:
214+
elif isinstance(options.parallel, int) and options.parallel == 0:
215215
# Case for `tox` or `tox -p 0`
216216
# tox will disable the parallel execution
217217
return True

0 commit comments

Comments
 (0)