Skip to content

Commit cc62670

Browse files
committed
Update tests.yaml
1 parent 98155c4 commit cc62670

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/tests.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ jobs:
4141
pip install -r tests/test-requirements.txt
4242
- name: Setup postgres
4343
run: |
44-
psql -h postgres -c 'CREATE DATABASE piccolo;' -U postgres
45-
psql -h postgres -c "CREATE USER piccolo PASSWORD 'piccolo';" -U postgres
46-
psql -h postgres -c "GRANT ALL PRIVILEGES ON DATABASE piccolo TO piccolo;" -U postgres
47-
psql -h postgres -c "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";" -d piccolo -U postgres
44+
psql -c 'CREATE DATABASE piccolo;' -U postgres
45+
psql -c "CREATE USER piccolo PASSWORD 'piccolo';" -U postgres
46+
psql -c "GRANT ALL PRIVILEGES ON DATABASE piccolo TO piccolo;" -U postgres
47+
psql -c "CREATE EXTENSION IF NOT EXISTS \"uuid-ossp\";" -d piccolo -U postgres
4848
4949
- name: Test with pytest, Postgres
5050
run: cd tests && ./test-postgres.sh

0 commit comments

Comments
 (0)