From 7d5f65c775607f74714392e048bcaaa11a0da69f Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Mon, 13 Dec 2021 20:22:18 +0300 Subject: [PATCH] Print configuration before running tests --- tests/main.py | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/tests/main.py b/tests/main.py index 63e33def..57806a01 100644 --- a/tests/main.py +++ b/tests/main.py @@ -104,6 +104,11 @@ ERPNEXT_VERSION={os.getenv("ERPNEXT_VERSION")} ) +@log("Print compose configuration") +def print_compose_configuration(): + docker_compose("config") + + @log("Create containers") def create_containers(): docker_compose("up", "-d") @@ -315,7 +320,9 @@ def main() -> int: patch_print() setup_env() + print_compose_configuration() create_containers() + ping_links_in_backends() create_site() check_index()