Skip to content

Commit

Permalink
feat(workflows): use wildcard in pg_prove
Browse files Browse the repository at this point in the history
  • Loading branch information
danimarinBG committed Aug 13, 2024
1 parent 61163cf commit eba8fae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/database_ud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions .github/workflows/database_ws.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit eba8fae

Please sign in to comment.