diff --git a/.github/workflows/database_ud.yml b/.github/workflows/database_ud.yml index c76083ff7e..cee80f8828 100644 --- a/.github/workflows/database_ud.yml +++ b/.github/workflows/database_ud.yml @@ -56,10 +56,10 @@ jobs: env: PGPASSWORD: postgres run: | - pg_prove -h localhost -U postgres -d giswater_test_db test/plsql/ud/ + pg_prove -h localhost -U postgres -d giswater_test_db test/plsql/ud/*.sql - name: Run SQL Tests with pgTAP and pg_prove (UPSERT) env: PGPASSWORD: postgres run: | - pg_prove -h localhost -U postgres -d giswater_test_db test/upsert/ud/ + pg_prove -h localhost -U postgres -d giswater_test_db test/upsert/ud/*.sql diff --git a/.github/workflows/database_ws.yml b/.github/workflows/database_ws.yml index 7b875e93e7..c126af50d4 100644 --- a/.github/workflows/database_ws.yml +++ b/.github/workflows/database_ws.yml @@ -56,10 +56,10 @@ jobs: env: PGPASSWORD: postgres run: | - pg_prove -h localhost -U postgres -d giswater_test_db test/plsql/ws/ + pg_prove -h localhost -U postgres -d giswater_test_db test/plsql/ws/*.sql - name: Run SQL Tests with pgTAP and pg_prove (UPSERT) env: PGPASSWORD: postgres run: | - pg_prove -h localhost -U postgres -d giswater_test_db test/upsert/ws/ + pg_prove -h localhost -U postgres -d giswater_test_db test/upsert/ws/*.sql