Skip to content

Commit fdebecb

Browse files
committed
fix python interpreter on Windows
1 parent 4a2e08f commit fdebecb

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ install:
3838
- cargo --version
3939

4040
test_script:
41+
- set PYTHON=C:\msys64\mingw64\bin\python3.exe
4142
- bash ci.sh
4243

4344
after_test:

ci.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ function run_tests {
2929
fi
3030
# "miri test" has built the sysroot for us, now this should pass without
3131
# any interactive questions.
32-
test-cargo-miri/run-test.py
32+
${PYTHON:-python3} test-cargo-miri/run-test.py
3333

3434
echo
3535
}

0 commit comments

Comments
 (0)