##// END OF EJS Templates
Only enable resume hinting with arrow if at the end of the line
Only enable resume hinting with arrow if at the end of the line

File last commit:

r28219:05f6a6e8
r28270:e9945f71
Show More
appveyor.yml
27 lines | 752 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:
Nikita Kniazev
Add Python 3.10 CI runners
r27062 APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
luz paz
Fix various typos...
r27520 COLUMNS: 120 # Appveyor web viewer window width is 130 chars
Nikita Kniazev
CI: Colorize and widen Pytest summary...
r26992
Srinivas Reddy Thatiparthy
Add appveyor.yml
r23123 matrix:
Matthias Bussonnier
MAINT: remove support and testing on Python 3.8...
r28219 - PYTHON: "C:\\Python39"
PYTHON_VERSION: "3.9.x"
Nicholas Bollweg
add py37/38 for appveyor
r25220 PYTHON_ARCH: "32"
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%"
Matthias Bussonnier
try to fix app-veyor
r27489 - python -m pip install --upgrade setuptools 'pip<22'
Nikita Kniazev
Move optional dependencies to a separate set
r27104 - pip install pytest-cov
- pip install -e .[test_extra]
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