##// END OF EJS Templates
Decrease testing using iptest, coverage using pytest....
Decrease testing using iptest, coverage using pytest. iptest will be deprecated soon as Node will not run on Python 3.10 as far as I understood.

File last commit:

r25839:98bb6cc0
r26136:88aa7fd8
Show More
appveyor.yml
31 lines | 765 B | text/x-yaml | YamlLexer
Srinivas Reddy Thatiparthy
Add appveyor.yml
r23123 build: false
Srinivas Reddy Thatiparthy
add fail fast
r23206 matrix:
fast_finish: true # immediately finish build once one of the jobs fails.
Srinivas Reddy Thatiparthy
Add appveyor.yml
r23123
environment:
matrix:
Nicholas Bollweg
add py37/38 for appveyor
r25220 - PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.x"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python38"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python38-x64"
PYTHON_VERSION: "3.8.x"
PYTHON_ARCH: "64"
Srinivas Reddy Thatiparthy
Add appveyor.yml
r23123 init:
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
Matthias Bussonnier
Install IPython using setup.py
r23124 - "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
Min RK
upgrade pip on appveyor...
r24263 - "%CMD_IN_ENV% python -m pip install --upgrade setuptools pip"
Srinivas Reddy Thatiparthy
run appveyor tests
r23197 - "%CMD_IN_ENV% pip install nose coverage"
Srinivas Reddy Thatiparthy
create a directory and move in
r23198 - "%CMD_IN_ENV% pip install .[test]"
- "%CMD_IN_ENV% mkdir results"
- "%CMD_IN_ENV% cd results"
Srinivas Reddy Thatiparthy
Add appveyor.yml
r23123 test_script:
Srinivas Reddy Thatiparthy
create a directory and move in
r23198 - "%CMD_IN_ENV% iptest --coverage xml"