From de6f79af4a0e68d6772bff002d5c4ebf6ad387f1 Mon Sep 17 00:00:00 2001 From: Adrien Berchet Date: Thu, 6 Jul 2023 17:24:55 +0200 Subject: [PATCH] Fix SyntaxError introduced in a6451af --- src/tox_gh_actions/plugin.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tox_gh_actions/plugin.py b/src/tox_gh_actions/plugin.py index 7d17864..65693d8 100644 --- a/src/tox_gh_actions/plugin.py +++ b/src/tox_gh_actions/plugin.py @@ -211,7 +211,7 @@ def is_log_grouping_enabled(options: Parsed) -> bool: elif isinstance(options.parallel, int) and options.parallel > 0: # Case for `tox p` or `tox -p ` return False - elif isinstance(options.parallel, int) and options.parallel = 0: + elif isinstance(options.parallel, int) and options.parallel == 0: # Case for `tox` or `tox -p 0` # tox will disable the parallel execution return True