##// END OF EJS Templates
Remove iptest and other Nose-dependent code
Remove iptest and other Nose-dependent code

File last commit:

r27042:360df2b6
r27042:360df2b6
Show More
appveyor.yml
35 lines | 894 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:
Nikita Kniazev
CI: Colorize and widen Pytest summary...
r26992 global:
COLUMNS: 120 # Appveyor web viwer window width is 130 chars
Srinivas Reddy Thatiparthy
Add appveyor.yml
r23123 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%"
Nikita Kniazev
CI: Remove noop %CMD_IN_ENV% usage
r26968 - python -m pip install --upgrade setuptools pip
Nikita Kniazev
Remove iptest and other Nose-dependent code
r27042 - pip install pytest pytest-cov pytest-trio matplotlib pandas
Nikita Kniazev
Pytest ipdoctest plugin...
r26996 - pip install -e .[test]
Srinivas Reddy Thatiparthy
Add appveyor.yml
r23123 test_script:
Nikita Kniazev
CI: Colorize and widen Pytest summary...
r26992 - pytest --color=yes -ra --cov --cov-report=xml
Nikita Kniazev
CI: Upload coverage from Appveyor
r26946 on_finish:
Nikita Kniazev
CI: Switch to the new codecov uploader...
r26969 - curl -Os https://uploader.codecov.io/latest/windows/codecov.exe
- codecov -e PYTHON_VERSION,PYTHON_ARCH