qutebrowser/scripts/dev/ci/travis_run.sh
2017-09-29 22:29:18 +02:00

15 lines
546 B
Bash

#!/bin/bash
if [[ $DOCKER ]]; then
docker run --privileged -v "$PWD:/outside" -e "QUTE_BDD_WEBENGINE=$QUTE_BDD_WEBENGINE" -e "DOCKER=$DOCKER" -e "CI=$CI" "qutebrowser/travis:$DOCKER"
elif [[ $TESTENV == eslint ]]; then
# Can't run this via tox as we can't easily install tox in the javascript travis env
cd qutebrowser/javascript || exit 1
eslint --color --report-unused-disable-directives .
else
args=()
[[ $TRAVIS_OS_NAME == osx ]] && args=('--qute-bdd-webengine' '--no-xvfb')
tox -e "$TESTENV" -- "${args[@]}"
fi