e06a32ff42
This reverts commit b2e52408f7
.
Turns out only [testing] is on PyQt 5.6, and even with that the testsuite
doesn't seem to load properly...
16 lines
367 B
Bash
16 lines
367 B
Bash
#!/bin/bash
|
|
|
|
if [[ $DOCKER ]]; then
|
|
# To build a fresh image:
|
|
# docker build -t img misc/docker/$DOCKER
|
|
# docker run --privileged -v $PWD:/outside img
|
|
|
|
docker run --privileged -v $PWD:/outside \
|
|
thecompiler/qutebrowser-manual:$DOCKER
|
|
else
|
|
args=()
|
|
[[ $TESTENV == docs ]] && args=('--no-authors')
|
|
|
|
tox -e $TESTENV -- "${args[@]}"
|
|
fi
|