forked from xlcnd/isbnlib
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
52 lines (42 loc) · 1.25 KB
/
appveyor.yml
File metadata and controls
52 lines (42 loc) · 1.25 KB
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
version: '3.6.8.{build}'
branches:
only:
- /v3.6.8/
environment:
matrix:
- TOXENV: "py27"
TOXPYTHON: "C:\\Python27\\python.exe"
PYTHON_HOME: "C:\\Python27"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
- TOXENV: "py34"
TOXPYTHON: "C:\\Python34-x64\\python.exe"
PYTHON_HOME: "C:\\Python34-x64"
PYTHON_VERSION: "3.4"
PYTHON_ARCH: "64"
- TOXENV: "py27"
TOXPYTHON: "C:\\Python27-x64\\python.exe"
PYTHON_HOME: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
- TOXENV: "py33"
TOXPYTHON: "C:\\Python33\\python.exe"
PYTHON_HOME: "C:\\Python33"
PYTHON_VERSION: "3.3"
PYTHON_ARCH: "32"
init:
- "ECHO %TOXENV%"
- "ECHO %TOXPYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "%TOXPYTHON% C:/get-pip.py"
- "%PYTHON_HOME%/Scripts/pip.exe install -r requirements-appveyor.txt"
build: false # First tests then build (is python not C)
test_script:
- "%PYTHON_HOME%\\Scripts\\tox -e %TOXENV%"
# clone_folder: 'c:\\projects\\isbnlib'
# after_test:
# - "%TOXPYTHON% setup.py bdist_wheel"
# - ps: "ls dist"
# artifacts:
# - path: 'dist\\*.whl'