summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2023-03-24 13:19:12 +0100
committerRonny Pfannschmidt <opensource@ronnypfannschmidt.de>2023-03-29 17:04:12 +0200
commitb773005ad28b3cdfc8baf4fba5f7b07ac6ef11a6 (patch)
tree599de46a239eb1f51be5c3ec22fba8a757427b21
parentc47fc2bea58870b44b88bf6f4f0347eaa04e4620 (diff)
downloadsetuptools-scm-b773005ad28b3cdfc8baf4fba5f7b07ac6ef11a6.tar.gz
switch command for run to avoid pytohn 3.7 windows bug
-rw-r--r--testing/test_basic_api.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/test_basic_api.py b/testing/test_basic_api.py
index 272fcce..bb6a614 100644
--- a/testing/test_basic_api.py
+++ b/testing/test_basic_api.py
@@ -16,7 +16,7 @@ from testing.wd_wrapper import WorkDir
def test_run_plain(tmp_path: Path) -> None:
- run([sys.executable, "-h"], cwd=tmp_path)
+ run([sys.executable, "-c", "print(1)"], cwd=tmp_path)
def test_data_from_mime(tmp_path: Path) -> None: