Commit 586097a5 authored by Stefan Behnel's avatar Stefan Behnel

Fix test command line to make it work on Windows.

parent 3ee327cd
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
# tag: pep489, subinterpreter # tag: pep489, subinterpreter
PYTHON setup.py build_ext --inplace PYTHON setup.py build_ext --inplace
PYTHON -c 'import subtest; subtest.run_main()' PYTHON -c "import subtest; subtest.run_main()"
PYTHON -c 'import subtest; subtest.run_sub()' PYTHON -c "import subtest; subtest.run_sub()"
PYTHON -c 'import subtest; subtest.run_main(); subtest.run_sub()' PYTHON -c "import subtest; subtest.run_main(); subtest.run_sub()"
######## setup.py ######## ######## setup.py ########
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment