qutebrowser/scripts/dev/ci/travis_run.sh
Florian Bruhin e8528c2c75 travis: Switch back to autogenerated Docker images
Archlinux updated to PyQt 5.6 in [extra] now, so the autobuilt image
should work fine with Qt 5.6 now.
2016-05-29 23:00:32 +02:00

11 lines
222 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