e8528c2c75
Archlinux updated to PyQt 5.6 in [extra] now, so the autobuilt image should work fine with Qt 5.6 now.
11 lines
222 B
Bash
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
|