From 53ee6a3d474cb13b3d1fe8a3cc2e2896b9f8106b Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Fri, 19 Jul 2024 12:30:01 +0200 Subject: [PATCH] Use VERSION insterad of SINGLE_VERSION like we do in whole org Signed-off-by: Petr "Stone" Hracek --- test/test_mariadb_imagestream.py | 4 ++-- test/test_mariadb_imagestream_template.py | 4 ++-- test/test_mariadb_latest_imagestreams.py | 2 +- test/test_mariadb_template.py | 4 ++-- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/test/test_mariadb_imagestream.py b/test/test_mariadb_imagestream.py index e309aee..b1543ee 100644 --- a/test/test_mariadb_imagestream.py +++ b/test/test_mariadb_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_mariadb_imagestream_template.py b/test/test_mariadb_imagestream_template.py index d5515e0..9a45449 100644 --- a/test/test_mariadb_imagestream_template.py +++ b/test/test_mariadb_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_mariadb_latest_imagestreams.py b/test/test_mariadb_latest_imagestreams.py index 919c73c..b30c384 100644 --- a/test/test_mariadb_latest_imagestreams.py +++ b/test/test_mariadb_latest_imagestreams.py @@ -10,7 +10,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_mariadb_template.py b/test/test_mariadb_template.py index 753044d..8dc96c2 100644 --- a/test/test_mariadb_template.py +++ b/test/test_mariadb_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")