beets/appveyor.yml
2016-08-11 21:58:58 -04:00

27 lines
672 B
YAML

version: "{build}"
build: off
deploy: off
skip_commits:
# add [appveyor skip] as an alias for [skip appveyor] (like [ci skip])
message: /\[appveyor skip\]/
environment:
# Undocumented feature of nose-show-skipped.
NOSE_SHOW_SKIPPED: 1
matrix:
- PYTHON: C:\Python27
TOX_ENV: py27-test
- PYTHON: C:\Python34
TOX_ENV: py34-test
- PYTHON: C:\Python35
TOX_ENV: py35-test
# Install Tox for running tests.
install:
- cinst imagemagick -y
- "%PYTHON%/Scripts/pip.exe install tox"
- "%PYTHON%/Scripts/tox.exe -e %TOX_ENV% --notest"
test_script:
- "%PYTHON%/Scripts/tox.exe -e %TOX_ENV%"