-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
32 lines (27 loc) · 935 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
# https://packaging.python.org/guides/supporting-windows-using-appveyor/
environment:
matrix:
# The only test we perform on Windows are our actual code tests. All linting, static
# analysis, etc are only run on Linux (via Travis CI).
# Python 3.7
- PYTHON: "C:\\Python37"
TOXENV: "py37-local"
- PYTHON: "C:\\Python37-x64"
TOXENV: "py37-local"
- PYTHON: "C:\\Python37"
TOXENV: "py37-integ"
- PYTHON: "C:\\Python37-x64"
TOXENV: "py37-integ"
- PYTHON: "C:\\Python37"
TOXENV: "py37-examples"
- PYTHON: "C:\\Python37-x64"
TOXENV: "py37-examples"
install:
# Prepend newly installed Python to the PATH of this build
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
# Check the Python version to verify the correct version was installed
- "python --version"
- "python -m pip install --upgrade setuptools wheel tox"
build: off
test_script:
- "tox -- -vv"