From 439114bf28d63603a12274bb28fc19224766f164 Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Wed, 15 Dec 2021 09:28:53 +0300 Subject: [PATCH] Fix postgres ci override in tests --- tests/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/main.py b/tests/main.py index 5c3f7119..22cb8eb6 100644 --- a/tests/main.py +++ b/tests/main.py @@ -361,7 +361,7 @@ def check_erpnext_assets(): def create_containers_with_postgres_override(): args = ["-f", "overrides/compose.postgres.yaml"] if CI: - args.extend(("-f", "tests/compose.ci.postgres.yaml")) + args.extend(("-f", "tests/compose.ci-postgres.yaml")) docker_compose(*args, "up", "-d", "--quiet-pull")