beets/appveyor.yml
Johnny Robeson bd340b2910 Replace Python 3.4 with 3.6 on Appveyor (#2358)
Python 3.4 is quite old and offers little value on Windows.

Closes #2344
2017-01-02 19:06:49 -05:00

29 lines
796 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:\Python35
TOX_ENV: py35-test
- PYTHON: C:\Python36
TOX_ENV: py36-test
# Install Tox for running tests.
install:
- cinst imagemagick -y
# TODO: remove --allow-empty-checksums when unrar offers a proper checksum
- cinst unrar -y --allow-empty-checksums
- "%PYTHON%/Scripts/pip.exe install tox"
- "%PYTHON%/Scripts/tox.exe -e %TOX_ENV% --notest"
test_script:
- "%PYTHON%/Scripts/tox.exe -e %TOX_ENV%"