From c32f5fafc9d3b4cd0486e89b0cc9e7e955715e79 Mon Sep 17 00:00:00 2001 From: Ari Koivula Date: Wed, 15 Feb 2017 14:21:26 +0200 Subject: [PATCH] Fix OSX test Work around for a bug in Travis CI env travis-ci/travis-ci#6522 I was waiting for them to fix it, but looks like they are never going to. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3fc43a201..e0a6da569 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,8 +22,6 @@ addons: matrix: fast_finish: true - allow_failures: - - os: osx # Don't know what's wrong. Something changed in the environment. include: - compiler: clang @@ -134,3 +132,6 @@ install: script: - source .travis-script.sh + +after_script: + - set +e # Disable errors to work around Travis not knowing how to fix their stuff.