2017-06-20 21:45:49 +02:00
|
|
|
environment:
|
|
|
|
|
|
|
|
matrix:
|
|
|
|
# For Python versions available on Appveyor, see
|
|
|
|
# http://www.appveyor.com/docs/installed-software#python
|
|
|
|
# The list here is complete (excluding Python 2.6, which
|
|
|
|
# isn't covered by this document) at the time of writing.
|
|
|
|
|
|
|
|
- PYTHON: "C:\\Python27"
|
|
|
|
- PYTHON: "C:\\Python33"
|
|
|
|
- PYTHON: "C:\\Python34"
|
|
|
|
- PYTHON: "C:\\Python35"
|
|
|
|
- PYTHON: "C:\\Python36"
|
|
|
|
|
|
|
|
install:
|
|
|
|
# We need wheel installed to build wheels
|
|
|
|
- "git submodule update --init --recursive"
|
2017-06-22 15:49:46 +02:00
|
|
|
- "%PYTHON%\\python.exe -m pip install -U wheel"
|
2017-06-20 21:45:49 +02:00
|
|
|
- "%PYTHON%\\python.exe -m pip install -r requirements.txt"
|
|
|
|
- "%PYTHON%\\python.exe -m pip install -r requirements-dev.txt"
|
|
|
|
|
|
|
|
build: off
|
|
|
|
|
2017-06-22 15:49:46 +02:00
|
|
|
cache: C:\Users\appveyor\pip\wheels
|
|
|
|
|
2017-06-20 21:45:49 +02:00
|
|
|
test_script:
|
2017-09-09 23:53:49 +02:00
|
|
|
- "%python%\\Scripts\\pytest -v --cov"
|