Skip to content

Commit 8b1ba7a

Browse files
committed
Replace test_mariadb_ to test_ocp_.
Let's mark then as OCP which is more readable for testing mariadb container in OpenShift. Next test_container_*.py files will be used for testing container from container point of view w/o OpenShift Signed-off-by: Petr "Stone" Hracek <phracek@redhat.com>
1 parent e686a92 commit 8b1ba7a

8 files changed

+5
-5
lines changed
File renamed without changes.

test/run-openshift-pytest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ THISDIR=$(dirname ${BASH_SOURCE[0]})
1010

1111
git show -s
1212

13-
cd "${THISDIR}" && python3.12 -m pytest -s -rA --showlocals -vv test_mariadb_*.py
13+
cd "${THISDIR}" && python3.12 -m pytest -s -rA --showlocals -vv test_ocp_*.py
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from container_ci_suite.openshift import OpenShiftAPI
77
from container_ci_suite.utils import check_variables
88

9-
from constants import TAGS
9+
from conftest import TAGS
1010

1111
if not check_variables():
1212
print("At least one variable from IMAGE_NAME, OS, VERSION is missing.")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from container_ci_suite.openshift import OpenShiftAPI
77
from container_ci_suite.utils import check_variables
88

9-
from constants import TAGS
9+
from conftest import TAGS
1010

1111
if not check_variables():
1212
print("At least one variable from IMAGE_NAME, OS, VERSION is missing.")
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
from container_ci_suite.openshift import OpenShiftAPI
77
from container_ci_suite.utils import check_variables
88

9-
from constants import TAGS
9+
from conftest import TAGS
1010

1111
if not check_variables():
1212
print("At least one variable from IMAGE_NAME, OS, VERSION is missing.")
File renamed without changes.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from container_ci_suite.helm import HelmChartsAPI
77

8-
from constants import TAGS
8+
from conftest import TAGS
99
test_dir = Path(os.path.abspath(os.path.dirname(__file__)))
1010

1111
VERSION = os.getenv("VERSION")

0 commit comments

Comments
 (0)