-
Notifications
You must be signed in to change notification settings - Fork 677
Expand file tree
/
Copy path.appveyor.yml
More file actions
32 lines (24 loc) · 781 Bytes
/
.appveyor.yml
File metadata and controls
32 lines (24 loc) · 781 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
environment:
matrix:
# For Python versions available on Appveyor, see
# http://www.appveyor.com/docs/installed-software#python
- 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"
# Python 3.3 has reached EOL
install:
# Prepend Python installation to PATH
- set PATH=%PYTHON_INSTALL%;%PATH%
# Prepend Python scripts to PATH (e.g. py.test)
- set PATH=%PYTHON_INSTALL%\\Scripts;%PATH%
# We need to install the python-can library itself
- "python -m pip install .[test,neovi]"
build: off
test_script:
- "pytest -v --timeout=300 --cov=can"
- "codecov"