forked from willvousden/ptemcee
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.appveyor.yml
34 lines (29 loc) · 977 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
32
33
34
build: off
environment:
matrix:
- PYTHON_MAJOR: 2
PYTHON_MINOR: 7
- PYTHON_MAJOR: 3
PYTHON_MINOR: 4
- PYTHON_MAJOR: 3
PYTHON_MINOR: 5
- PYTHON_MAJOR: 3
PYTHON_MINOR: 6
- PYTHON_MAJOR: 3
PYTHON_MINOR: 7
install:
# Add Make and Python to the PATH.
- copy C:\MinGW\bin\mingw32-make.exe C:\MinGW\bin\make.exe
- set PATH=%PATH%;C:\MinGW\bin
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%;%PATH%
- set PATH=C:\Python%PYTHON_MAJOR%%PYTHON_MINOR%\Scripts;%PATH%
# Upgrade to the latest version of pip to avoid it displaying
# warnings about it being out of date.
- python -m pip install --disable-pip-version-check --upgrade pip
# Install project dependencies.
- make init
test_script:
# FIXME We have to run this again, otherwise pytest-xdist doesn't work.
# Don't know why.
- pipenv install --dev --ignore-pipfile
- make test