##// END OF EJS Templates
test_completer tests resurrection...
test_completer tests resurrection * Class in class tests never was a thing. * Generating methods seems to not work even in nose, they report no coverage. * Installed pandas in CI to run test_dataframe_key_completion

File last commit:

r26989:92296e1c
r26989:92296e1c
Show More
appveyor.yml
36 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:
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
test_completer tests resurrection...
r26989 - pip install nose coverage pytest pytest-cov pytest-trio pywin32 matplotlib pandas
Nikita Kniazev
CI: Remove noop %CMD_IN_ENV% usage
r26968 - pip install .[test]
- mkdir results
- cd results
Srinivas Reddy Thatiparthy
Add appveyor.yml
r23123 test_script:
Nikita Kniazev
CI: Remove noop %CMD_IN_ENV% usage
r26968 - iptest --coverage xml
Nikita Kniazev
CI: Run Pytest tests on Appveyor
r26970 - cd ..
- pytest -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