forked from kivy/oscpy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
70 lines (67 loc) · 1.93 KB
/
.travis.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
language: python
matrix:
include:
- language: python
os: linux
python: "2.7"
install: pip install --editable .[dev,travis]
script:
- pytest tests/ --cov oscpy/ --cov-branch
- travis_retry coveralls
- language: python
os: linux
python: "3.5"
install: pip install --editable .[dev,travis]
script:
- pytest tests/ --cov oscpy/ --cov-branch
- travis_retry coveralls
- language: python
os: linux
python: "3.6"
install: pip install --editable .[dev,travis]
script:
- pytest tests/ --cov oscpy/ --cov-branch
- travis_retry coveralls
- language: python
os: linux
python: "3.7-dev"
install: pip install --editable .[dev,travis]
script:
- pytest tests/ --cov oscpy/ --cov-branch
- travis_retry coveralls
- language: python
os: linux
python: "pypy3.5"
install: pip install --editable .[dev,travis]
script:
- pytest tests/ --cov oscpy/ --cov-branch
- travis_retry coveralls
- language: sh
os: osx
python: "2.7"
install: pip install --editable .[dev,travis]
script:
- pytest tests/ --cov oscpy/ --cov-branch
- travis_retry coveralls
- language: python
os: windows
language: sh
python: "2.7"
before_install:
- choco install python2
- export PATH="/c/Python27/:/c/Python27/Scripts:$PATH"
install: pip install --editable .[dev,travis]
script:
- pytest tests/ --cov oscpy/ --cov-branch
- travis_retry coveralls
- language: python
os: windows
python: "3.7"
language: sh
before_install:
- choco install python3
- export PATH="/c/Python37/:/c/Python37/Scripts:$PATH"
install: pip install --editable .[dev,travis]
script:
- pytest tests/ --cov oscpy/ --cov-branch
- travis_retry coveralls