8000 Extended travis config · buriy/python-readability@a98151e · GitHub
[go: up one dir, main page]

Skip to content

Commit a98151e

Browse files
authored
Extended travis config
- Python versions added (3.9, pypy) - OS added (MacOS, 2 different versions)
1 parent 615ce80 commit a98151e

File tree

1 file changed

+40
-6
lines changed

1 file changed

+40
-6
lines changed

.travis.yml

Lines changed: 40 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,45 @@
11
language: python
2+
os: linux
3+
cache: pip
24

3-
python:
4-
- 2.7
5-
- 3.5
6-
- 3.6
7-
- 3.7
8-
- 3.8
5+
matrix:
6+
include:
7+
- name: "Python 2.7 on Linux"
8+
python: 2.7
9+
- name: "Python 3.5 on Linux"
10+
python: 3.5
11+
- name: "Python 3.6 on Linux"
12+
python: 3.6
13+
- name: "Python 3.7 on Linux"
14+
python: 3.7
15+
- name: "Python 3.8 on Linux"
16+
dist: xenial
17+
python: 3.8
18+
- name: "Python 3.9 Nightly on Linux"
19+
dist: bionic
20+
python: nightly
21+
- name: "Pypy 3 on Linux"
22+
python: pypy3
23+
- name: "Python 3 on older macOS"
24+
os: osx
25+
osx_image: xcode9.4
26+
language: shell
27+
before_install:
28+
- sw_vers
29+
- python3 --version
30+
- pip3 --version
31+
- name: "Python 3 on macOS"
32+
os: osx
33+
osx_image: xcode11
34+
language: shell
35+
before_install:
36+
- sw_vers
37+
- python3 --version
38+
- pip3 --version
39+
allow_failures:
40+
- python: nightly
41+
- python: pypy3
42+
- os: osx
943

1044
install:
1145
- travis_retry pip install -U pip wheel tox-travis

0 commit comments

Comments
 (0)
0