summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNed Batchelder <ned@nedbatchelder.com>2020-10-20 17:22:50 -0400
committerNed Batchelder <ned@nedbatchelder.com>2020-10-20 17:22:50 -0400
commit73e2c814b5e6b39e29f474a313ac04452bc15985 (patch)
tree43ab06cad5238de2c36bfe6b6fe3405d18afca49
parent821001174f92c39b2db3e2a253a0330c92e5a253 (diff)
downloadpython-coveragepy-git-73e2c814b5e6b39e29f474a313ac04452bc15985.tar.gz
Windows and shlex aren't friends
-rw-r--r--tests/coveragetest.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/coveragetest.py b/tests/coveragetest.py
index daa9eb7f..be80c498 100644
--- a/tests/coveragetest.py
+++ b/tests/coveragetest.py
@@ -425,6 +425,7 @@ class CoverageTest(
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