forked from hardbyte/python-can
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.appveyor.yml
More file actions
31 lines (24 loc) · 785 Bytes
/
.appveyor.yml
File metadata and controls
31 lines (24 loc) · 785 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
environment:
matrix:
# For Python versions available on Appveyor, see
# https://www.appveyor.com/docs/windows-images-software/#python
# Python pre-2.7 and 3.0-3.4 have reached EOL
- PYTHON: "C:\\Python27"
- PYTHON: "C:\\Python35"
- PYTHON: "C:\\Python36"
- PYTHON: "C:\\Python37"
- PYTHON: "C:\\Python27-x64"
- PYTHON: "C:\\Python35-x64"
- PYTHON: "C:\\Python36-x64"
- PYTHON: "C:\\Python37-x64"
install:
# Prepend Python installation and scripts (e.g. pytest) to PATH
- set PATH=%PYTHON%;%PYTHON%\\Scripts;%PATH%
# We need to install the python-can library itself including the dependencies
- "python -m pip install .[test,neovi]"
build: off
test_script:
# run tests
- "pytest"
# uplad coverage reports
- "codecov"