diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/coveragetest.py | 4 | ||||
-rw-r--r-- | tests/test_concurrency.py | 1 |
2 files changed, 0 insertions, 5 deletions
diff --git a/tests/coveragetest.py b/tests/coveragetest.py index be80c498..f4961ed9 100644 --- a/tests/coveragetest.py +++ b/tests/coveragetest.py @@ -418,15 +418,11 @@ class CoverageTest( # The invocation requests the coverage.py program. Substitute the # actual coverage.py main command name. command_words = [self.coverage_command] - command_words = [sys.executable, "-m", "coverage"] - print("command_words: {!r}".format(command_words)) else: command_words = [command_name] cmd = " ".join([shlex_quote(w) for w in command_words] + command_args) - cmd = " ".join(command_words + command_args) - print("cmd: {!r}".format(cmd)) # Add our test modules directory to PYTHONPATH. I'm sure there's too # much path munging here, but... diff --git a/tests/test_concurrency.py b/tests/test_concurrency.py index 9c1edc36..7109f170 100644 --- a/tests/test_concurrency.py +++ b/tests/test_concurrency.py @@ -396,7 +396,6 @@ class MultiprocessingTest(CoverageTest): args=args, start_method=start_method, ) out = self.run_command(cmd) - print(f"@ self.run_command(); {out=}") expected_cant_trace = cant_trace_msg(concurrency, the_module) if expected_cant_trace is not None: |