-
Notifications
You must be signed in to change notification settings - Fork 9
/
rundockertests.sh
executable file
·33 lines (24 loc) · 1.1 KB
/
rundockertests.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash
# Run the tests locally using the qgis testing environment docker
xhost +
PLUGIN_NAME="lessons"
# One of master_2, master, release
TARGET_VERSION=master
if [ $TARGET_VERSION = 'master' ]; then
PIP_EXECUTABLE=pip3
else
PIP_EXECUTABLE=pip
fi
#docker rm -f qgis-testing-environment
# replace latest with master if you wish to test on master, latest is
# latest supported Boundless release
docker pull boundlessgeo/qgis-testing-environment:$TARGET_VERSION
docker tag boundlessgeo/qgis-testing-environment:$TARGET_VERSION qgis-testing-environment
docker run -d --name qgis-testing-environment -e DISPLAY=:99 -v /tmp/.X11-unix:/tmp/.X11-unix -v `pwd`:/tests_directory qgis-testing-environment
# Setup
docker exec -it qgis-testing-environment sh -c "qgis_setup.sh $PLUGIN_NAME"
docker exec -it qgis-testing-environment sh -c "$PIP_EXECUTABLE install paver"
# Package
docker exec -it qgis-testing-environment sh -c "cd /tests_directory && paver setup && paver package --tests"
# Run tests
docker exec -it qgis-testing-environment sh -c "qgis_testrunner.sh ${PLUGIN_NAME}.tests.testerplugin.run_tests"