File tree 1 file changed +10
-1
lines changed
.docker/qgis_resources/test_runner
1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 11
11
TEST_NAME=$1
12
12
13
13
echo " Running test $1 ..."
14
- OUTPUT=$( QGIS_TEST_MODULE=${TEST_NAME} unbuffer qgis --version-migration --nologo --code /usr/bin/qgis_testrunner.py " $TEST_NAME " 2> /dev/null | tee >( cat) )
14
+
15
+ qgis --version-migration --nologo --code /usr/bin/qgis_testrunner.py " $TEST_NAME " 2> /dev/null
16
+
17
+
18
+ echo " Running test with unbuffer $1 ..."
19
+
20
+ unbuffer qgis --version-migration --nologo --code /usr/bin/qgis_testrunner.py " $TEST_NAME " 2> /dev/null
21
+
22
+ echo " Running test really $1 ..."
23
+ OUTPUT=$( QGIS_TEST_MODULE=${TEST_NAME} unbuffer qgis --version-migration --nologo --code /usr/bin/qgis_testrunner.py " $TEST_NAME " 2> /dev/null | tee /dev/tty )
15
24
EXIT_CODE=" $? "
16
25
if [ -z " $OUTPUT " ]; then
17
26
echo " ERROR: no output from the test runner! (exit code: ${EXIT_CODE} )"
You can’t perform that action at this time.
0 commit comments