56 lines
1.3 KiB
YAML
56 lines
1.3 KiB
YAML
environment:
|
|
matrix:
|
|
- TOXENV: "linting"
|
|
PYTEST_NO_COVERAGE: "1"
|
|
- TOXENV: "py27"
|
|
- TOXENV: "py34"
|
|
- TOXENV: "py35"
|
|
- TOXENV: "py36"
|
|
- TOXENV: "py37"
|
|
- TOXENV: "pypy"
|
|
PYTEST_NO_COVERAGE: "1"
|
|
- TOXENV: "py27-xdist"
|
|
- TOXENV: "py27-trial"
|
|
- TOXENV: "py27-numpy"
|
|
- TOXENV: "py27-pluggymaster"
|
|
PYTEST_NO_COVERAGE: "1"
|
|
- TOXENV: "py36-xdist"
|
|
- TOXENV: "py36-trial"
|
|
- TOXENV: "py36-numpy"
|
|
- TOXENV: "py36-pluggymaster"
|
|
PYTEST_NO_COVERAGE: "1"
|
|
- TOXENV: "py27-nobyte"
|
|
- TOXENV: "doctesting"
|
|
- TOXENV: "py36-freeze"
|
|
PYTEST_NO_COVERAGE: "1"
|
|
- TOXENV: "docs"
|
|
PYTEST_NO_COVERAGE: "1"
|
|
|
|
install:
|
|
- echo Installed Pythons
|
|
- dir c:\Python*
|
|
|
|
- if "%TOXENV%" == "pypy" call scripts\install-pypy.bat
|
|
|
|
- C:\Python36\python -m pip install --upgrade pip
|
|
- C:\Python36\python -m pip install --upgrade --pre tox
|
|
|
|
build: false # Not a C# project, build stuff at the test step instead.
|
|
|
|
before_test:
|
|
- call scripts\prepare-coverage.bat
|
|
|
|
test_script:
|
|
- C:\Python36\python -m tox
|
|
|
|
on_success:
|
|
- call scripts\upload-coverage.bat
|
|
|
|
cache:
|
|
- '%LOCALAPPDATA%\pip\cache'
|
|
- '%USERPROFILE%\.cache\pre-commit'
|
|
|
|
# We don't deploy anything on tags with AppVeyor, we use Travis instead, so we
|
|
# might as well save resources
|
|
skip_tags: true
|