-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathappveyor.yml
36 lines (27 loc) · 913 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
35
36
environment:
matrix:
- JOB: "3.8 32-bit"
PYTHON_HOME: "C:\\Python38"
TOX_PY: py38
- JOB: "3.6 64-bit"
PYTHON_HOME: "C:\\Python36-x64"
TOX_PY: py36
- JOB: "3.7 64-bit"
PYTHON_HOME: "C:\\Python37-x64"
TOX_PY: py37
- JOB: "3.8 64-bit"
PYTHON_HOME: "C:\\Python38-x64"
TOX_PY: py38
install:
# Prepend Python to the PATH of this build
- "SET PATH=%PYTHON_HOME%;%PYTHON_HOME%\\Scripts;%PATH%"
# check that we have the expected version and architecture for Python
- "python --version"
- 'python -c "import struct; print(struct.calcsize(''P'') * 8)"'
# upgrade pip and setuptools to avoid out-of-date warnings
- "python -m pip install --disable-pip-version-check --user --upgrade pip setuptools virtualenv"
# install the dependencies to run the tests
- "python -m pip install tox"
build: false
test_script:
- "tox -e %TOX_PY%"