forked from VUnit/vunit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
37 lines (28 loc) · 876 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
# For Windows based CI
environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
# The list here is complete (excluding Python 2.6, which
# isn't covered by this document) at the time of writing.
- BUILD_NAME: py27-unit
PYTHON: "C:\\Python27"
- BUILD_NAME: py33-unit
PYTHON: "C:\\Python33"
- BUILD_NAME: py34-unit
PYTHON: "C:\\Python34"
- BUILD_NAME: py35-unit
PYTHON: "C:\\Python35"
- BUILD_NAME: py27-lint
PYTHON: "C:\\Python27"
- BUILD_NAME: py35-lint
PYTHON: "C:\\Python35"
- BUILD_NAME: py27-docs
PYTHON: "C:\\Python27"
- BUILD_NAME: py35-docs
PYTHON: "C:\\Python35"
install:
- "%PYTHON%\\python.exe -m pip install tox"
build: off
test_script:
- "%PYTHON%\\python.exe -m tox -e %BUILD_NAME%"