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 fe85290 commit 09e0a12
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion test/run-openshift-pytest
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ THISDIR=$(dirname ${BASH_SOURCE[0]})

git show -s

cd "${THISDIR}" && python3 -m pytest -s -rxfapP --showlocals -vv test_mysql_*.py
cd "${THISDIR}" && python3.12 -m pytest -s -rA --showlocals -vv test_mysql_*.py
4 changes: 2 additions & 2 deletions test/test_mysql_imagestream.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
4 changes: 2 additions & 2 deletions test/test_mysql_imagestream_template.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down
2 changes: 1 addition & 1 deletion test/test_mysql_latest_imagestreams.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)


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

Expand Down

0 comments on commit 09e0a12

Please sign in to comment.