From 4bc3bdebaf35bd1971b851f23d76de7d9df586db Mon Sep 17 00:00:00 2001 From: Lev Vereshchagin Date: Tue, 14 Dec 2021 15:25:58 +0300 Subject: [PATCH] Show tests/.env --- tests/main.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/main.py b/tests/main.py index 57806a01..73df623e 100644 --- a/tests/main.py +++ b/tests/main.py @@ -102,6 +102,8 @@ FRAPPE_VERSION={os.getenv("FRAPPE_VERSION")} ERPNEXT_VERSION={os.getenv("ERPNEXT_VERSION")} """ ) + with open("tests/.env") as f: + print(f.read()) @log("Print compose configuration")