Skip to content

Commit 99dc079

Browse files
authored
Merge pull request #292 from joerick/s390x-allow-failures
Allow failures on s390x on Travis
2 parents 696067f + 93913ef commit 99dc079

File tree

1 file changed

+26
-22
lines changed

1 file changed

+26
-22
lines changed

.travis.yml

Lines changed: 26 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,50 +1,54 @@
1-
language: generic
1+
language: minimal
22

3-
matrix:
3+
jobs:
44
include:
5-
# Linux Python 3
6-
- sudo: required
5+
- name: Linux | x86_64 + i686 | Python 3.5
76
language: python
87
python: 3.5
98
services: docker
109
env: PYTHON=python
1110

12-
# Linux Python 3
13-
- sudo: required
11+
- name: Linux | arm64 | Python 3.5
1412
language: python
1513
python: 3.5
1614
services: docker
1715
arch: arm64
1816
env: PYTHON=python
1917

20-
# Linux Python 3
21-
- sudo: required
18+
- name: Linux | ppc64le | Python 3.5
2219
language: python
2320
python: 3.5
2421
services: docker
2522
arch: ppc64le
2623
env: PYTHON=python
2724

28-
# Linux Python 3
29-
- sudo: required
25+
- name: macOS | x86_64 | Python 3.x
26+
os: osx
27+
env: PYTHON=python3
28+
29+
- name: Windows | x86_64 | Python 3.5
30+
os: windows
31+
language: shell
32+
before_install:
33+
- choco install python3 --version 3.5.4 --no-progress -y
34+
env:
35+
- PYTHON=C:\\Python35\\python
36+
37+
- name: Linux | s390x | Python 3.5
3038
language: python
3139
python: 3.5
3240
services: docker
3341
arch: s390x
3442
env: PYTHON=python
3543

36-
# macOS Python 3
37-
- os: osx
38-
env: PYTHON=python3
39-
40-
- os: windows
41-
language: shell
42-
before_install:
43-
- choco install python3 --version 3.5.4 --no-progress -y
44-
install:
45-
- C:\\Python35\\python -m pip install -r requirements-dev.txt
46-
script:
47-
- C:\\Python35\\python ./bin/run_tests.py
44+
allow_failures:
45+
# must repeat the s390x job above exactly to match
46+
- name: Linux | s390x | Python 3.5
47+
language: python
48+
python: 3.5
49+
services: docker
50+
arch: s390x
51+
env: PYTHON=python
4852

4953
install: $PYTHON -m pip install -r requirements-dev.txt
5054

0 commit comments

Comments
 (0)