Skip to content

Commit

Permalink
Use VERSION instead of SINGLE_VERSION like we do in whole org
Browse files Browse the repository at this point in the history
Signed-off-by: Petr "Stone" Hracek <[email protected]>
  • Loading branch information
phracek committed Jul 19, 2024
1 parent e81892b commit 43e80fd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions test/test_deploy_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,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")

Expand Down
4 changes: 2 additions & 2 deletions test/test_latest_imagestreams.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
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)

VERSION = os.getenv("SINGLE_VERSION")
VERSION = os.getenv("VERSION")


# Replacement with 'test_latest_imagestreams'
Expand Down
4 changes: 2 additions & 2 deletions test/test_s2i_imagestreams.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@


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("OS")

Expand Down
4 changes: 2 additions & 2 deletions test/test_s2i_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@
from container_ci_suite.openshift import OpenShiftAPI

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")

Expand Down

0 comments on commit 43e80fd

Please sign in to comment.