This repository was archived by the owner on Jan 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
53 lines (43 loc) · 1.24 KB
/
Copy path.appveyor.yml
File metadata and controls
53 lines (43 loc) · 1.24 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
53
version: '0.0.2.{build}'
branches:
only:
- dev
- /v0.0.2/
cache:
- '%LOCALAPPDATA%\pip\Cache'
environment:
matrix:
- TOXENV: "py36"
TOXPYTHON: "C:\\Python36-x64\\python.exe"
PYTHON_HOME: "C:\\Python36-x64"
PYTHON_VERSION: "3.6"
PYTHON_ARCH: "64"
- TOXENV: "py35"
TOXPYTHON: "C:\\Python35-x64\\python.exe"
PYTHON_HOME: "C:\\Python35-x64"
PYTHON_VERSION: "3.5"
PYTHON_ARCH: "64"
- TOXENV: "py27"
TOXPYTHON: "C:\\Python27-x64\\python.exe"
PYTHON_HOME: "C:\\Python27-x64"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "64"
- TOXENV: "py27"
TOXPYTHON: "C:\\Python27\\python.exe"
PYTHON_HOME: "C:\\Python27"
PYTHON_VERSION: "2.7"
PYTHON_ARCH: "32"
init:
- "ECHO %TOXENV%"
- "ECHO %PYTHON_HOME%"
- "ECHO %TOXPYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
install:
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- set PATH=%PYTHON_HOME%;%PYTHON_HOME%\Scripts;%PATH%
- "ECHO %PATH%"
- "%TOXPYTHON% C:/get-pip.py"
- "%PYTHON_HOME%/Scripts/pip.exe install -r requirements-appveyor.txt"
- "%TOXPYTHON% -m pip install tox"
build: false
test_script:
- "%TOXPYTHON% -m tox -e %TOXENV%"