From daf268f7dafc0c60b5ac56afb76ae2f4be219717 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Eppl=C3=A9e?= Date: Wed, 18 Jun 2025 12:13:18 +0200 Subject: [PATCH] Fix postgres port in CI --- .drone.yml | 3 ++- config/test.exs | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index 1dbc9fd..3a81264 100644 --- a/.drone.yml +++ b/.drone.yml @@ -40,7 +40,7 @@ steps: # Wait for postgres to become available - | for i in {1..20}; do - if pg_isready -h postgres -U postgres; then + if pg_isready -h postgres -U postgres -p 5000; then exit 0 else true @@ -55,6 +55,7 @@ steps: environment: MIX_ENV: test TEST_POSTGRES_HOST: postgres + TEST_POSTGRES_PORT: 5000 commands: # Install hex package manager - mix local.hex --force diff --git a/config/test.exs b/config/test.exs index 68beeb0..9d6784e 100644 --- a/config/test.exs +++ b/config/test.exs @@ -9,7 +9,7 @@ config :mv, Mv.Repo, username: "postgres", password: "postgres", hostname: System.get_env("TEST_POSTGRES_HOST", "localhost"), - port: 5000, + port: System.get_env("TEST_POSTGRES_PORT", 5000), database: "mv_test#{System.get_env("MIX_TEST_PARTITION")}", pool: Ecto.Adapters.SQL.Sandbox, pool_size: System.schedulers_online() * 2