diff --git a/tests/test_runner.py b/tests/test_runner.py index 4dffdae..31c5345 100644 --- a/tests/test_runner.py +++ b/tests/test_runner.py @@ -145,7 +145,10 @@ class ExecCommandTest(AbstractCommandTest): ), call(f"exec: TERMinating subprocess pid={pid}"), call(decode_err), - ] + ], + # Pass any_order=True to allow for some extra line reported on Windows + # but not on Linux ("exec: Process pid=... exited with status code 0") + any_order=True, ) # The update should NOT contain a new task status -- that is left to the Worker.