forked from untitaker/python-atomicwrites
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
27 lines (24 loc) · 760 Bytes
/
appveyor.yml
File metadata and controls
27 lines (24 loc) · 760 Bytes
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
build: false # Not a C# project, build stuff at the test step instead.
environment:
matrix:
- PYTHON: "C:/Python27"
- PYTHON: "C:/Python27-x64"
- PYTHON: "C:/Python34"
- PYTHON: "C:/Python34-x64"
- PYTHON: "C:/Python35"
- PYTHON: "C:/Python35-x64"
- PYTHON: "C:/Python36"
- PYTHON: "C:/Python36-x64"
- PYTHON: "C:/Python37"
- PYTHON: "C:/Python37-x64"
- PYTHON: "C:/Python38"
- PYTHON: "C:/Python38-x64"
init:
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- ps: (new-object net.webclient).DownloadFile('https://bootstrap.pypa.io/get-pip.py', 'C:/get-pip.py')
- "%PYTHON%/python.exe C:/get-pip.py"
- "%PYTHON%/Scripts/pip.exe install tox"
test_script:
- "%PYTHON%/Scripts/tox.exe -e py-test"