We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2060f35 commit bf1c7d9Copy full SHA for bf1c7d9
test/run_test.sh
@@ -46,8 +46,11 @@ $PYCMD test_jit.py $@
46
47
echo "Running multiprocessing tests"
48
$PYCMD test_multiprocessing.py $@
49
-MULTIPROCESSING_METHOD=spawn $PYCMD test_multiprocessing.py $@
50
-MULTIPROCESSING_METHOD=forkserver $PYCMD test_multiprocessing.py $@
+# Turn off unsupported methods for Windows
+if [[ "$OSTYPE" != "msys" ]]; then
51
+ MULTIPROCESSING_METHOD=spawn $PYCMD test_multiprocessing.py $@
52
+ MULTIPROCESSING_METHOD=forkserver $PYCMD test_multiprocessing.py $@
53
+fi
54
55
echo "Running util tests"
56
$PYCMD test_utils.py $@
0 commit comments