.appveyor.yml: drop py34; run coverage and upload to codecov
We no longer run tests on python3.4 on Windows; 2.7 and 3.5 are enough for Windows I believe. We do test python3.4 on Linux (not for long, I hope). We shall add 3.6 when Appveyor provides that by default.
This commit is contained in:
parent
4fcbebcb38
commit
8ea5587afe
@ -2,32 +2,22 @@ environment:
|
|||||||
matrix:
|
matrix:
|
||||||
- JOB: "2.7.12 32-bit"
|
- JOB: "2.7.12 32-bit"
|
||||||
PYTHON_HOME: "C:\\Python27"
|
PYTHON_HOME: "C:\\Python27"
|
||||||
TOXENV: "py27"
|
TOXENV: "py27-cov"
|
||||||
TOXPYTHON: "C:\\Python27\\python.exe"
|
TOXPYTHON: "C:\\Python27\\python.exe"
|
||||||
|
|
||||||
- JOB: "3.4.4 32-bit"
|
|
||||||
PYTHON_HOME: "C:\\Python34"
|
|
||||||
TOXENV: "py34"
|
|
||||||
TOXPYTHON: "C:\\Python34\\python.exe"
|
|
||||||
|
|
||||||
- JOB: "3.5.2 32-bit"
|
- JOB: "3.5.2 32-bit"
|
||||||
PYTHON_HOME: "C:\\Python35"
|
PYTHON_HOME: "C:\\Python35"
|
||||||
TOXENV: "py35"
|
TOXENV: "py35-cov"
|
||||||
TOXPYTHON: "C:\\Python35\\python.exe"
|
TOXPYTHON: "C:\\Python35\\python.exe"
|
||||||
|
|
||||||
- JOB: "2.7.12 64-bit"
|
- JOB: "2.7.12 64-bit"
|
||||||
PYTHON_HOME: "C:\\Python27-x64"
|
PYTHON_HOME: "C:\\Python27-x64"
|
||||||
TOXENV: "py27"
|
TOXENV: "py27-cov"
|
||||||
TOXPYTHON: "C:\\Python27-x64\\python.exe"
|
TOXPYTHON: "C:\\Python27-x64\\python.exe"
|
||||||
|
|
||||||
- JOB: "3.4.4 64-bit"
|
|
||||||
PYTHON_HOME: "C:\\Python34-x64"
|
|
||||||
TOXENV: "py34"
|
|
||||||
TOXPYTHON: "C:\\Python34-x64\\python.exe"
|
|
||||||
|
|
||||||
- JOB: "3.5.2 64-bit"
|
- JOB: "3.5.2 64-bit"
|
||||||
PYTHON_HOME: "C:\\Python35-x64"
|
PYTHON_HOME: "C:\\Python35-x64"
|
||||||
TOXENV: "py35"
|
TOXENV: "py35-cov"
|
||||||
TOXPYTHON: "C:\\Python35-x64\\python.exe"
|
TOXPYTHON: "C:\\Python35-x64\\python.exe"
|
||||||
|
|
||||||
install:
|
install:
|
||||||
@ -50,10 +40,9 @@ install:
|
|||||||
|
|
||||||
# upgrade pip and setuptools to avoid out-of-date warnings
|
# upgrade pip and setuptools to avoid out-of-date warnings
|
||||||
- "python -m pip install --disable-pip-version-check --user --upgrade pip setuptools"
|
- "python -m pip install --disable-pip-version-check --user --upgrade pip setuptools"
|
||||||
- "python -m pip --version"
|
|
||||||
|
|
||||||
# install the dependencies to run the tests
|
# install the dependencies to run the tests
|
||||||
- "python -m pip install -r dev-requirements.txt"
|
- "python -m pip install tox"
|
||||||
|
|
||||||
|
|
||||||
build: false
|
build: false
|
||||||
@ -61,6 +50,9 @@ build: false
|
|||||||
test_script:
|
test_script:
|
||||||
- "tox"
|
- "tox"
|
||||||
|
|
||||||
|
after_test:
|
||||||
|
- "tox -e codecov"
|
||||||
|
|
||||||
notifications:
|
notifications:
|
||||||
- provider: Email
|
- provider: Email
|
||||||
to:
|
to:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user