-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
30 lines (26 loc) · 852 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
build: false
matrix:
fast_finish: true # immediately finish build once one of the jobs fails.
environment:
matrix:
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.x"
PYTHON_ARCH: "64"
init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip"
- "%CMD_IN_ENV% pip install nose coverage"
# - "%CMD_IN_ENV% pip install .[test]"
- "%CMD_IN_ENV% pip install pytest"
# - "%CMD_IN_ENV% mkdir results"
# - "%CMD_IN_ENV% cd results"
# - "%CMD_IN_ENV% cd ~"
- "%CMD_IN_ENV% ls"
test_script:
# - "%CMD_IN_ENV% iptest --coverage xml"
- "%CMD_IN_ENV% python test_nb.py || python test_nb.py || python test_nb.py"