Set pgpassword in env.

This commit is contained in:
Arijit Das 2021-06-17 12:28:59 +05:30
parent f0b57de7d7
commit 87096e1d35
2 changed files with 4 additions and 1 deletions

View File

@ -63,4 +63,4 @@ jobs:
- name: Run unit tests
run:
PGPASSWORD=password make statedifftest
make statedifftest

View File

@ -25,6 +25,9 @@ PORT = 5432
USER = postgres
PASSWORD = password
# Set env variable
export PGPASSWORD=$(PASSWORD)
#Test
TEST_DB = vulcanize_testing
TEST_CONNECT_STRING = postgresql://$(USER):$(PASSWORD)@$(HOST_NAME):$(PORT)/$(TEST_DB)?sslmode=disable