forked from manrajgrover/halo
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
42 lines (34 loc) · 902 Bytes
/
appveyor.yml
File metadata and controls
42 lines (34 loc) · 902 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
init:
- ps: echo $env:TOXENV
- ps: ls C:\Python*
cache:
- '%LOCALAPPDATA%\pip\Cache'
environment:
fast_finish: true
matrix:
- TOXENV: 'py27'
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
PYTHON_VERSION: '2.7'
PYTHON_ARCH: '32'
- TOXENV: 'py36'
TOXPYTHON: C:\Python36\python.exe
PYTHON_HOME: C:\Python36
PYTHON_VERSION: '3.6'
PYTHON_ARCH: '32'
- TOXENV: 'lint'
TOXPYTHON: C:\Python27\python.exe
PYTHON_HOME: C:\Python27
PYTHON_VERSION: '2.7'
PYTHON_ARCH: '32'
matrix:
fast_finish: true
install:
- 'git submodule update --init --recursive'
- '%PYTHON_HOME%\Scripts\pip --version'
- '%PYTHON_HOME%\Scripts\pip install tox'
- '%PYTHON_HOME%\Scripts\tox --version'
- '%PYTHON_HOME%\Scripts\virtualenv --version'
build: off
test_script:
- '%PYTHON_HOME%\Scripts\tox -e %TOXENV%'