qutebrowser/scripts/dev/ci/travis_run.sh
Florian Bruhin b2e52408f7 travis: Switch to autobuilt Docker images
Since Archlinux switched to PyQt 5.6, we can now use the autobuilt image
without a handbuilt PyQt. This means we have an up-to-date image with
each build again.
2016-04-29 22:54:00 +02:00

12 lines
232 B
Bash

#!/bin/bash
if [[ $DOCKER ]]; then
docker run --privileged -v $PWD:/outside \
thecompiler/qutebrowser:$DOCKER
else
args=()
[[ $TESTENV == docs ]] && args=('--no-authors')
tox -e $TESTENV -- "${args[@]}"
fi