mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-26 00:02:08 -05:00
This allows running the gdal processing tests and other subprocesses which have been manually built like server applications.
10 lines
460 B
Bash
Executable File
10 lines
460 B
Bash
Executable File
export PYTHONPATH=${HOME}/osgeo4travis/lib/python3.3/site-packages/
|
|
export PATH=${HOME}/osgeo4travis/bin:${HOME}/osgeo4travis/sbin:${PATH}
|
|
export LD_LIBRARY_PATH=${HOME}/osgeo4travis/lib
|
|
export CTEST_PARALLEL_LEVEL=1
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
xvfb-run ctest -V -E "$(cat ${DIR}/blacklist.txt | paste -sd '|' -)" -S ./qgis-test-travis.ctest --output-on-failure
|
|
# xvfb-run ctest -V -S ./qgis-test-travis.ctest --output-on-failure
|