-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path.appveyor.yml
57 lines (44 loc) · 1.15 KB
/
.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# https://www.appveyor.com/docs/appveyor-yml/
version: "{build}"
max_jobs: 6
build: "off"
shallow_clone: true
clone_depth: 1
branches:
only:
- master
- develop
except:
- nightly
environment:
fast_finish: true
matrix:
- PYTHON: "C:\\Python35"
PYTHON_VERSION: "3.5.4"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python35-x64"
PYTHON_VERSION: "3.5.4"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python36"
PYTHON_VERSION: "3.6.8"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python36-x64"
PYTHON_VERSION: "3.6.8"
PYTHON_ARCH: "64"
- PYTHON: "C:\\Python37"
PYTHON_VERSION: "3.7.3"
PYTHON_ARCH: "32"
- PYTHON: "C:\\Python37-x64"
PYTHON_VERSION: "3.7.3"
PYTHON_ARCH: "64"
init:
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
- "python --version"
- "python -c \"import struct; print(struct.calcsize('P') * 8)\""
install:
- "python -m pip install --disable-pip-version-check --user --upgrade pip"
- "pip install -e . --no-use-pep517"
- "pip install -e .[dev] --no-use-pep517"
test_script:
- "%CMD_IN_ENV% python setup.py test"