diff options
author | Ned Batchelder <ned@nedbatchelder.com> | 2020-10-30 09:22:09 -0400 |
---|---|---|
committer | Ned Batchelder <ned@nedbatchelder.com> | 2020-10-30 09:22:09 -0400 |
commit | 39d8634b8ebee76ab776d4592e0ce1f9d9c77eb5 (patch) | |
tree | df218d093b9272b9b2516450b853c98dff5c4a64 /tests | |
parent | 583e3987a3bea627acd4ff737abf1ee9a000fcf4 (diff) | |
download | python-coveragepy-git-nedbat/virtualenv-34.tar.gz |
Remove debuggingnedbat/virtualenv-34
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: |