b2e52408f7
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.
12 lines
232 B
Bash
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
|