mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
6 lines
290 B
Bash
Executable File
6 lines
290 B
Bash
Executable File
printf "[qgis_test]\nhost=localhost\ndbname=qgis_test\nuser=postgres" > ~/.pg_service.conf
|
|
psql -c 'CREATE DATABASE qgis_test;' -U postgres
|
|
psql -c 'CREATE EXTENSION postgis;' -U postgres -d qgis_test
|
|
psql -f $TRAVIS_BUILD_DIR/tests/testdata/provider/testdata.sql -U postgres -d qgis_test
|
|
|