forked from beetbox/beets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
31 lines (27 loc) · 924 Bytes
/
appveyor.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
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
- PYTHON: C:\Python37
TOX_ENV: py37-test
# Install Tox for running tests.
install:
- appveyor-retry cinst imagemagick -y
# TODO: remove --allow-empty-checksums when unrar offers a proper checksum
- appveyor-retry cinst unrar -y --allow-empty-checksums
- 'appveyor-retry %PYTHON%/Scripts/pip.exe install "tox<=3.8.1"'
- "appveyor-retry %PYTHON%/Scripts/tox.exe -e %TOX_ENV% --notest"
test_script:
- "%PYTHON%/Scripts/tox.exe -e %TOX_ENV%"