Skip to content

Commit 6b048c4

Browse files
committed
fix path to python
1 parent 0d3ae0e commit 6b048c4

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

appveyor.yml

+7-3
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@ environment:
4242
# - TARGET: x86_64-pc-windows-msvc
4343
# RUST_VERSION: nightly
4444

45+
matrix:
46+
fast_finish: true
47+
4548
init:
4649
- "%PYTHON_DIR%\\python.exe -m pip install pip==9.0.1 scikit-ci==0.14.0"
4750
# - python -m pip install scikit-ci==0.14.0 scikit-ci-addons==0.15.0
@@ -59,14 +62,14 @@ install:
5962
- set PATH=%PATH%;C:\Users\appveyor\.cargo\bin
6063
- rustc -Vv
6164
- cargo -V
62-
- python -m ci install
65+
- "%PYTHON_DIR%\\python -m ci install"
6366

6467

6568
build_script:
66-
- python -m ci build
69+
- "%PYTHON_DIR%\\python -m ci build"
6770

6871
test_script:
69-
- python -m ci test
72+
- "%PYTHON_DIR%\\python -m ci test"
7073

7174
# after_test:
7275
# - python -m ci after_test
@@ -109,6 +112,7 @@ branches:
109112
notifications:
110113
- provider: Email
111114
on_build_success: false
115+
on_build_failure: false
112116

113117
# Building is done in the test phase, so we disable Appveyor's build phase.
114118
# build: false

0 commit comments

Comments
 (0)