comparison schema/run_tests.sh @ 3024:5470aa3ffb9a

Fix privileges for GeoServer views
author Tom Gottfried <tom@intevation.de>
date Fri, 12 Apr 2019 11:41:24 +0200
parents 93fa55bce126
children 453f15ba8030
comparison
equal deleted inserted replaced
3023:5d06629a14df 3024:5470aa3ffb9a
26 # Drop test roles, add test data and run tests 26 # Drop test roles, add test data and run tests
27 psql -qXv ON_ERROR_STOP= -v -d gemma_test \ 27 psql -qXv ON_ERROR_STOP= -v -d gemma_test \
28 -c 'SET client_min_messages TO WARNING' \ 28 -c 'SET client_min_messages TO WARNING' \
29 -c "DROP ROLE IF EXISTS $TEST_ROLES" \ 29 -c "DROP ROLE IF EXISTS $TEST_ROLES" \
30 -f tap_tests_data.sql \ 30 -f tap_tests_data.sql \
31 -c 'SELECT plan(64)' \ 31 -c "SELECT plan(64 + (
32 SELECT count(*)::int
33 FROM information_schema.tables
34 WHERE table_schema = 'waterway'))" \
32 -f gemma_tests.sql \ 35 -f gemma_tests.sql \
33 -f isrs_tests.sql \ 36 -f isrs_tests.sql \
34 -f auth_tests.sql \ 37 -f auth_tests.sql \
35 -f manage_users_tests.sql \ 38 -f manage_users_tests.sql \
36 -c 'SELECT * FROM finish()' 39 -c 'SELECT * FROM finish()'