diff options
Diffstat (limited to 'tests/coveragetest.py')
-rw-r--r-- | tests/coveragetest.py | 4 |
1 files changed, 0 insertions, 4 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... |