appveyor.yml
27 lines
| 682 B
| text/x-yaml
|
YamlLexer
Srinivas Reddy Thatiparthy
|
r23123 | build: false | ||
Srinivas Reddy Thatiparthy
|
r23206 | matrix: | ||
fast_finish: true # immediately finish build once one of the jobs fails. | ||||
Srinivas Reddy Thatiparthy
|
r23123 | |||
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: | ||||
Matthias Bussonnier
|
r23124 | - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%" | ||
Min RK
|
r24263 | - "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip" | ||
Srinivas Reddy Thatiparthy
|
r23197 | - "%CMD_IN_ENV% pip install nose coverage" | ||
Srinivas Reddy Thatiparthy
|
r23198 | - "%CMD_IN_ENV% pip install .[test]" | ||
- "%CMD_IN_ENV% mkdir results" | ||||
- "%CMD_IN_ENV% cd results" | ||||
Srinivas Reddy Thatiparthy
|
r23123 | test_script: | ||
Srinivas Reddy Thatiparthy
|
r23198 | - "%CMD_IN_ENV% iptest --coverage xml" | ||
Matthias Bussonnier
|
r23124 | |||