forked from MozillaSecurity/lithium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.appveyor.yml
26 lines (26 loc) · 874 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
image:
- Visual Studio 2017
environment:
matrix:
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python34"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python34-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
install:
- "%PYTHON%\\python.exe -m pip install --upgrade setuptools pip"
- "git --version"
- "hg --version"
- "%PYTHON%\\python.exe -m pip install --upgrade \"flake8==3.5.0\" \"pylint==1.8.4\" \"codecov==2.0.15\""
- "%PYTHON%\\python.exe -m pip install --upgrade \"pytest-flake8==1.0.1\" \"pytest-pylint==0.9.0\""
- "%PYTHON%\\python.exe -m pip install --upgrade \"pytest-cov==2.5.1\""
- "choco install codecov"
build: off
test_script:
- "%PYTHON%\\python.exe -m pytest --cov-report xml"
on_success:
- "codecov -f coverage.xml"
skip_branch_with_pr: true