27 lines
590 B
YAML
27 lines
590 B
YAML
# Configure.
|
|
environment:
|
|
PATH: C:\%PYTHON%;C:\%PYTHON%\Scripts;%PATH%
|
|
PYTHON: Python35
|
|
matrix:
|
|
- TOX_ENV: lint
|
|
- TOX_ENV: py35
|
|
- TOX_ENV: py34
|
|
- TOX_ENV: py33
|
|
- TOX_ENV: py27
|
|
- TOX_ENV: py
|
|
PYTHON: Python35-x64
|
|
- TOX_ENV: py
|
|
PYTHON: Python34-x64
|
|
- TOX_ENV: py
|
|
PYTHON: Python33-x64
|
|
- TOX_ENV: py
|
|
PYTHON: Python27-x64
|
|
|
|
# Run.
|
|
build_script: pip install tox
|
|
test_script: tox -e %TOX_ENV%
|
|
on_success: IF %TOX_ENV% NEQ lint pip install codecov & codecov
|
|
|
|
# Post.
|
|
on_finish:
|
|
- FOR %%F IN (test*.png) DO appveyor PushArtifact %%F
|