Skip to content

Commit 5321558

Browse files
committed
Drop shared BRANCH_TO_TEST variable
1 parent 2518996 commit 5321558

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

test/test_helm_python_django_app.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
11
from container_ci_suite.helm import HelmChartsAPI
22

3-
from conftest import BRANCH_TO_TEST, skip_helm_charts_tests, VARS
3+
from conftest import skip_helm_charts_tests, VARS
44

55
DEPLOYED_PSQL_IMAGE = "quay.io/sclorg/postgresql-10-c8s:c8s"
66
IMAGE_TAG = "postgresql:10"
77
PSQL_VERSION = "10"
8+
BRANCH_TO_TEST = "2.2.x"
89

910
if VARS.VERSION in ("3.11", "3.12", "3.12-minimal"):
1011
DEPLOYED_PSQL_IMAGE = "quay.io/sclorg/postgresql-12-c8s"

test/test_helm_python_django_psql_persistent.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
from container_ci_suite.helm import HelmChartsAPI
22

3-
from conftest import BRANCH_TO_TEST, skip_helm_charts_tests,VARS
3+
from conftest import skip_helm_charts_tests, VARS
4+
5+
BRANCH_TO_TEST = "2.2.x"
46

57
if VARS.VERSION in ("3.11", "3.12", "3.12-minimal"):
68
BRANCH_TO_TEST = "4.2.x"

test/test_imagestreams_quickstart.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@
33

44
from container_ci_suite.openshift import OpenShiftAPI
55

6-
from conftest import BRANCH_TO_TEST,VARS
6+
from conftest import VARS
77

8+
BRANCH_TO_TEST = "2.2.x"
89
DEPLOYED_PSQL_IMAGE = "quay.io/sclorg/postgresql-10-c8s:c8s"
910
IMAGE_TAG = "postgresql:10"
1011
PSQL_VERSION = "10"

0 commit comments

Comments
 (0)