From 64e276579d09cf9d4032354216add744db9e9c84 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Fri, 19 Jul 2024 13:08:02 +0200 Subject: [PATCH] Use VERSION instead of SINGLE_VERSION, like we do in whole org Signed-off-by: Petr "Stone" Hracek --- test/test_postgresql_imagestream.py | 4 ++-- test/test_postgresql_imagestream_template.py | 4 ++-- test/test_postgresql_latest_imagestreams.py | 2 +- test/test_postgresql_template.py | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/test_postgresql_imagestream.py b/test/test_postgresql_imagestream.py index b81c4d28..eb1461a9 100644 --- a/test/test_postgresql_imagestream.py +++ b/test/test_postgresql_imagestream.py @@ -7,11 +7,11 @@ from container_ci_suite.utils import check_variables if not check_variables(): - print("At least one variable from IMAGE_NAME, OS, SINGLE_VERSION is missing.") + print("At least one variable from IMAGE_NAME, OS, VERSION is missing.") sys.exit(1) -VERSION = os.getenv("SINGLE_VERSION") +VERSION = os.getenv("VERSION") IMAGE_NAME = os.getenv("IMAGE_NAME") OS = os.getenv("TARGET") TAGS = { diff --git a/test/test_postgresql_imagestream_template.py b/test/test_postgresql_imagestream_template.py index 65323c6b..7ee986a0 100644 --- a/test/test_postgresql_imagestream_template.py +++ b/test/test_postgresql_imagestream_template.py @@ -7,11 +7,11 @@ from container_ci_suite.utils import check_variables if not check_variables(): - print("At least one variable from IMAGE_NAME, OS, SINGLE_VERSION is missing.") + print("At least one variable from IMAGE_NAME, OS, VERSION is missing.") sys.exit(1) -VERSION = os.getenv("SINGLE_VERSION") +VERSION = os.getenv("VERSION") IMAGE_NAME = os.getenv("IMAGE_NAME") OS = os.getenv("TARGET") TAGS = { diff --git a/test/test_postgresql_latest_imagestreams.py b/test/test_postgresql_latest_imagestreams.py index a8140cf3..f01d442e 100644 --- a/test/test_postgresql_latest_imagestreams.py +++ b/test/test_postgresql_latest_imagestreams.py @@ -11,7 +11,7 @@ TEST_DIR = Path(os.path.abspath(os.path.dirname(__file__))) if not check_variables(): - print("At least one variable from IMAGE_NAME, OS, SINGLE_VERSION is missing.") + print("At least one variable from IMAGE_NAME, OS, VERSION is missing.") sys.exit(1) diff --git a/test/test_postgresql_template.py b/test/test_postgresql_template.py index 516e5d00..cc19ad85 100644 --- a/test/test_postgresql_template.py +++ b/test/test_postgresql_template.py @@ -7,11 +7,11 @@ from container_ci_suite.utils import check_variables if not check_variables(): - print("At least one variable from IMAGE_NAME, OS, SINGLE_VERSION is missing.") + print("At least one variable from IMAGE_NAME, OS, VERSION is missing.") sys.exit(1) -VERSION = os.getenv("SINGLE_VERSION") +VERSION = os.getenv("VERSION") IMAGE_NAME = os.getenv("IMAGE_NAME") OS = os.getenv("TARGET")