forked from facelessuser/pymdown-extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
41 lines (34 loc) · 784 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
41
build: false
clone_depth: 5
environment:
matrix:
- PYTHON: "C:/Python27"
TOXENV: "py27"
- PYTHON: "C:/Python34"
TOXENV: "py34"
- PYTHON: "C:/Python35"
TOXENV: "py35"
- PYTHON: "C:/Python36"
TOXENV: "py36"
- PYTHON: "C:/Python37"
TOXENV: "py37"
- PYTHON: "C:/Python27"
TOXENV: "lint"
init:
- "ECHO %TOXENV%"
- "ECHO %PYTHON%"
- ps: "ls C:/Python*"
install:
- "%PYTHON%/Scripts/pip.exe install virtualenv"
- "%PYTHON%/Scripts/pip.exe install tox"
- "%PYTHON%/Scripts/pip.exe install codecov"
- "SET PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%"
test_script:
- pip --version
- virtualenv --version
- tox --version
- tox
after_test:
- if not ("%TOXENV%" == "lint") codecov
matrix:
fast_finish: true