From 200b112bdcdd788f69c5eb0787a9542352c771cd Mon Sep 17 00:00:00 2001 From: Jono Yang Date: Wed, 7 Aug 2024 14:03:03 -0700 Subject: [PATCH] Update envfile_testing Make command #520 Signed-off-by: Jono Yang --- Makefile | 2 +- azure-pipelines.yml | 6 ++---- 2 files changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 691ba6fc..70564ccf 100644 --- a/Makefile +++ b/Makefile @@ -55,7 +55,7 @@ envfile_testing: @if test -f ${ENV_FILE}; then echo ".env file exists already"; exit 1; fi @mkdir -p $(shell dirname ${ENV_FILE}) && touch ${ENV_FILE} @echo SECRET_KEY=\"${GET_SECRET_KEY}\" >> ${ENV_FILE} - @echo SCANCODEIO_DB_PORT=\"5433\" >> ${ENV_FILE} + @echo PACKAGEDB_DB_HOST=\"packagedb\" >> ${ENV_FILE} isort: @echo "-> Apply isort changes to ensure proper imports ordering" diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 55430a9c..8f78ec2b 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -7,13 +7,11 @@ resources: containers: - - container: postgres - image: postgres + - container: packagedb + image: postgres:13 env: - POSTGRES_DB: packagedb POSTGRES_USER: packagedb POSTGRES_PASSWORD: packagedb - POSTGRES_INITDB_ARGS: "--encoding=UTF-8 --lc-collate=en_US.UTF-8 --lc-ctype=en_US.UTF-8" ports: - 5432:5432