forked from sigmavirus24/github3.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
40 lines (35 loc) · 867 Bytes
/
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
version: build-{build}-{branch}
environment:
GH_RECORD_MODE: "none"
matrix:
# http://www.appveyor.com/docs/installed-software#python lists available
# versions
- PYTHON: "C:\\Python27"
TOXENV: py27
- PYTHON: "C:\\Python27-x64"
TOXENV: py27
- PYTHON: "C:\\Python34"
TOXENV: py34
- PYTHON: "C:\\Python34-x64"
TOXENV: py34
- PYTHON: "C:\\Python35"
TOXENV: py35
- PYTHON: "C:\\Python35-x64"
TOXENV: py35
- PYTHON: "C:\\Python36"
TOXENV: py36
- PYTHON: "C:\\Python36-x64"
TOXENV: py36
- PYTHON: "C:\\Python37"
TOXENV: py37
- PYTHON: "C:\\Python37-x64"
TOXENV: py37
init:
- "echo %PYTHON%"
install:
- "set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
- python --version
- python -m pip install -U pip setuptools tox
build: false
test_script:
- tox -v