From 81bfa814486204ffecaf89325ae57e0e12f300f7 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 12 Dec 2017 06:45:47 +0100 Subject: [PATCH] Don't run end2end tests on macOS anymore They are just too flaky on macOS to be useful, and I have no idea how to make things more stable there --- scripts/dev/ci/travis_run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dev/ci/travis_run.sh b/scripts/dev/ci/travis_run.sh index b7d44968e..55ca7c11e 100644 --- a/scripts/dev/ci/travis_run.sh +++ b/scripts/dev/ci/travis_run.sh @@ -26,7 +26,7 @@ elif [[ $TESTENV == shellcheck ]]; then koalaman/shellcheck:latest "${scripts[@]}" else args=() - [[ $TRAVIS_OS_NAME == osx ]] && args=('--qute-bdd-webengine' '--no-xvfb') + [[ $TRAVIS_OS_NAME == osx ]] && args=('--qute-bdd-webengine' '--no-xvfb' 'tests/unit') tox -e "$TESTENV" -- "${args[@]}" fi