8000 Merge pull request #661 from mindw/appveyor · omgjlk/github3.py@7e752ac · GitHub
[go: up one dir, main page]

Skip to content

Commit 7e752ac

Browse files
authored
Merge pull request sigmavirus24#661 from mindw/appveyor
Add appveyor CI for windows regression.
2 parents a334dbc + 0346884 commit 7e752ac

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

appveyor.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
version: build-{build}-{branch}
2+
3+
environment:
4+
matrix:
5+
# http://www.appveyor.com/docs/installed-software#python lists available
6+
# versions
7+
- PYTHON: "C:\\Python27"
8+
TOXENV: py27
9+
- PYTHON: "C:\\Python27-x64"
10+
TOXENV: py27
11+
- PYTHON: "C:\\Python33"
12+
TOXENV: py33
13+
- PYTHON: "C:\\Python33-x64"
14+
TOXENV: py33
15+
- PYTHON: "C:\\Python34"
16+
TOXENV: py34
17+
- PYTHON: "C:\\Python34-x64"
18+
TOXENV: py34
19+
- PYTHON: "C:\\Python35"
20+
TOXENV: py35
21+
- PYTHON: "C:\\Python35-x64"
22+
TOXENV: py35
23+
24+
init:
25+
- "echo %PYTHON%"
26+
27+
install:
28+
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
29+
- python --version
30+
- python -m pip install -U pip setuptools tox
31+
32+
build: false
33+
34+
test_script:
35+
- tox -v

0 commit comments

Comments
 (0)
0