Skip to content

Commit 92f120a

Browse files
updated CI test workflow and env
1 parent bbd500e commit 92f120a

File tree

2 files changed

+37
-2
lines changed

2 files changed

+37
-2
lines changed

.travis.yml

Lines changed: 36 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ addons:
1414
- libdw-dev
1515
- cmake
1616

17+
dist:
18+
1719
Env:
1820

1921
matrix:
@@ -33,6 +35,9 @@ matrix:
3335
sudo: false
3436
language: generic
3537
dist: trusty
38+
- os: osx
39+
osx_image: xcode7.2
40+
language: generic
3641
- os: osx
3742
osx_image: xcode7.3
3843
language: generic
@@ -48,10 +53,40 @@ matrix:
4853
- os: osx
4954
osx_image: xcode9.2
5055
language: generic
51-
allowed failures:
56+
- os: osx
57+
osx_image: xcode9.3
58+
language: generic
59+
- os: osx
60+
osx_image: xcode9.4
61+
language: generic
62+
- os: osx
63+
osx_image: xcode10
64+
language: generic
65+
allow_failures:
66+
- os: linux
67+
python: "nightly" # currently points to 3.7-dev
68+
env: TRAVIS_PYTHON_VERSION="3.7-dev"
5269
- os: osx
5370
osx_image: xcode6.4
5471
language: generic
72+
- os: osx
73+
osx_image: xcode7.2
74+
language: generic
75+
- os: osx
76+
osx_image: xcode7.3
77+
language: generic
78+
- os: osx
79+
osx_image: xcode8
80+
language: generic
81+
- os: osx
82+
osx_image: xcode8.3
83+
language: generic
84+
- os: osx
85+
osx_image: xcode9.2
86+
language: generic
87+
- os: osx
88+
osx_image: xcode9
89+
language: generic
5590
- os: linux
5691
sudo: true
5792
- os: linux

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ purge: clean uninstall
7777
$(QUIET)$(ECHO) "$@: Done."
7878

7979
test: cleanup
80-
$(QUIET)bash ./tests/test_*sh
80+
$(QUIET)echo ./tests/test_*sh | tr -s ' ' '\n' | xargs -L 1 -I{} bash --posix {} 2>/dev/null ;
8181
$(QUIET)$(ECHO) "$@: Done."
8282

8383
test-tox: cleanup

0 commit comments

Comments
 (0)