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 <phracek@redhat.com>
  • Loading branch information
phracek committed Jul 20, 2024
1 parent 1b3e1c8 commit 304163f
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions test/test_dancer_ex_standalone.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,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
4 changes: 2 additions & 2 deletions test/test_dancer_ex_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_deploy_templates.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,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_imagestreams_quickstart.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,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_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

0 comments on commit 304163f

Please sign in to comment.