qutebrowser/scripts/dev/ci/travis_run.sh

23 lines
663 B
Bash
Raw Normal View History

2016-03-15 19:23:49 +01:00
#!/bin/bash
if [[ $DOCKER ]]; then
2017-10-11 11:13:24 +02:00
docker run \
--privileged \
-v "$PWD:/outside" \
-e "QUTE_BDD_WEBENGINE=$QUTE_BDD_WEBENGINE" \
-e "DOCKER=$DOCKER" \
-e "CI=$CI" \
-e "TRAVIS=$TRAVIS" \
"qutebrowser/travis:$DOCKER"
elif [[ $TESTENV == eslint ]]; then
2017-10-11 11:13:24 +02:00
# Can't run this via tox as we can't easily install tox in the javascript
# travis env
cd qutebrowser/javascript || exit 1
2017-09-29 22:29:18 +02:00
eslint --color --report-unused-disable-directives .
2016-03-15 19:23:49 +01:00
else
args=()
2017-02-05 12:58:37 +01:00
[[ $TRAVIS_OS_NAME == osx ]] && args=('--qute-bdd-webengine' '--no-xvfb')
2017-09-10 13:21:03 +02:00
tox -e "$TESTENV" -- "${args[@]}"
2016-03-15 19:23:49 +01:00
fi