Skip to content

Commit 62e5681

Browse files
author
Sylvain MARIE
committed
Travis builds now include pytest 6. Fixes #121
1 parent 1bd9f7d commit 62e5681

File tree

1 file changed

+41
-15
lines changed

1 file changed

+41
-15
lines changed

.travis.yml

Lines changed: 41 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -6,44 +6,70 @@ language: python
66
matrix:
77
fast_finish: true
88
include:
9-
- python: 2.7 # pytest 2
9+
- name: "Python 2.7 Pytest 2"
10+
python: 2.7
1011
env: PYTEST_VERSION="<3" PYTEST_HTML_VERSION="==1.9.0" # indeed recent pytest_html require pytest>=3
11-
- python: 2.7 # pytest 3
12+
- name: "Python 2.7 Pytest 3"
13+
python: 2.7
1214
env: PYTEST_VERSION="<4" PYTEST_HTML_VERSION="==1.9.0"
13-
- python: 2.7 # pytest 4
15+
- name: "Python 2.7 Pytest 4"
16+
python: 2.7
1417
env: PYTEST_VERSION="<5" PYTEST_HTML_VERSION="==1.9.0"
15-
- python: 3.5 # pytest 2
18+
- name: "Python 3.5 Pytest 2"
19+
python: 3.5
1620
env: PYTEST_VERSION="<3" PYTEST_HTML_VERSION="==1.9.0" # indeed recent pytest_html require pytest>=3
17-
- python: 3.5 # pytest 3
21+
- name: "Python 3.5 Pytest 3"
22+
python: 3.5
1823
env: PYTEST_VERSION="<4" PYTEST_HTML_VERSION="==1.9.0"
19-
- python: 3.5 # pytest 4
24+
- name: "Python 3.5 Pytest 4"
25+
python: 3.5
2026
env: PYTEST_VERSION="<5" PYTEST_HTML_VERSION="==1.9.0"
21-
- python: 3.5 # pytest 5
27+
- name: "Python 3.5 Pytest 5"
28+
python: 3.5
2229
env: PYTEST_VERSION="<6" PYTEST_HTML_VERSION="==1.9.0"
23-
- python: 3.6 # pytest 2
30+
- name: "Python 3.5 Pytest latest"
31+
python: 3.5 # pytest latest
32+
env: PYTEST_VERSION="" PYTEST_HTML_VERSION="==1.9.0"
33+
- name: "Python 3.6 Pytest 2"
34+
python: 3.6
2435
env: PYTEST_VERSION="<3" PYTEST_HTML_VERSION="==1.9.0" # indeed recent pytest_html require pytest>=3
25-
- python: 3.6 # pytest 3
36+
- name: "Python 3.6 Pytest 3"
37+
python: 3.6
2638
env: PYTEST_VERSION="<4" PYTEST_HTML_VERSION="==1.9.0"
27-
- python: 3.6 # pytest 4
39+
- name: "Python 3.6 Pytest 4"
40+
python: 3.6
2841
env: PYTEST_VERSION="<5" PYTEST_HTML_VERSION="==1.9.0"
29-
- python: 3.6 # pytest 5
42+
- name: "Python 3.6 Pytest 5"
43+
python: 3.6
3044
env: PYTEST_VERSION="<6" PYTEST_HTML_VERSION="==1.9.0"
31-
- python: 3.7 # pytest 2
45+
- name: "Python 3.6 Pytest latest"
46+
python: 3.6
47+
env: PYTEST_VERSION="" PYTEST_HTML_VERSION="==1.9.0"
48+
- name: "Python 3.7 Pytest 2"
49+
python: 3.7
3250
env: PYTEST_VERSION="<3" PYTEST_HTML_VERSION="==1.9.0" # indeed recent pytest_html require pytest>=3
3351
dist: xenial
3452
sudo: true
35-
- python: 3.7 # pytest 3
53+
- name: "Python 3.7 Pytest 3"
54+
python: 3.7
3655
env: PYTEST_VERSION="<4" PYTEST_HTML_VERSION="==1.9.0"
3756
dist: xenial
3857
sudo: true
39-
- python: 3.7 # pytest 4
58+
- name: "Python 3.7 Pytest 4"
59+
python: 3.7
4060
env: PYTEST_VERSION="<5" PYTEST_HTML_VERSION="==1.9.0"
4161
dist: xenial
4262
sudo: true
43-
- python: 3.7 # pytest 5
63+
- name: "Python 3.7 Pytest 5"
64+
python: 3.7
4465
env: PYTEST_VERSION="<6" PYTEST_HTML_VERSION="==1.9.0"
4566
dist: xenial
4667
sudo: true
68+
- name: "Python 3.7 Pytest latest"
69+
python: 3.7
70+
env: PYTEST_VERSION="" PYTEST_HTML_VERSION="==1.9.0"
71+
dist: xenial
72+
sudo: true
4773

4874
env:
4975
global:

0 commit comments

Comments
 (0)