summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Bruhin <me@the-compiler.org>2019-02-17 21:03:46 +0100
committerFlorian Bruhin <me@the-compiler.org>2019-02-17 21:04:14 +0100
commite027c3056c165de519e6e7fb5d2f5adfd28de418 (patch)
treeccb8c402f9c6bdc1362a983e653e194f5d1f8d2a
parent34b2e5bec1489f3b746f33d39ccaba5e6209d1e7 (diff)
downloadqutebrowser-e027c3056c165de519e6e7fb5d2f5adfd28de418.tar.gz
qutebrowser-e027c3056c165de519e6e7fb5d2f5adfd28de418.zip
Update macOS commandline in travis_run
-rw-r--r--scripts/dev/ci/travis_run.sh3
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/dev/ci/travis_run.sh b/scripts/dev/ci/travis_run.sh
index 4e338221f..eb1248d96 100644
--- a/scripts/dev/ci/travis_run.sh
+++ b/scripts/dev/ci/travis_run.sh
@@ -26,7 +26,8 @@ elif [[ $TESTENV == shellcheck ]]; then
koalaman/shellcheck:latest "${scripts[@]}"
else
args=()
- [[ $TRAVIS_OS_NAME == osx ]] && args=('--qute-bdd-webengine' '--no-xvfb' 'tests/unit')
+ # We only run unit tests on macOS because it's quite slow.
+ [[ $TRAVIS_OS_NAME == osx ]] && args+=('--qute-bdd-webengine' '--no-xvfb' 'tests/unit')
# WORKAROUND for unknown crash inside swrast_dri.so
# See https://github.com/qutebrowser/qutebrowser/pull/4218#issuecomment-421931770