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
This commit is contained in:
Florian Bruhin 2017-12-12 06:45:47 +01:00
parent 481dec067d
commit 81bfa81448

View File

@ -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