Skip to content

Commit 5bbdea8

Browse files
committed
Use proper branch for testing 'test_python_s2i_templates'
in case of VERSIONS '3.11' and '3.12' use branch '4.2.X' otherwise use branch '2.2.X' Fixes: #733 Signed-off-by: Petr "Stone" Hracek <[email protected]>
1 parent 562d69e commit 5bbdea8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test-lib-python.sh

+3-1
Original file line numberDiff line numberDiff line change
@@ -109,12 +109,14 @@ django-postgresql-persistent.json"
109109
if [[ "${VERSION}" == "3.11" ]] || [[ "${VERSION}" == "3.12" ]]; then
110110
postgresql_image="quay.io/sclorg/postgresql-12-c8s|postgresql:12"
111111
postgresql_version="12"
112+
branch="4.2.x"
112113
else
113114
postgresql_image="quay.io/centos7/postgresql-10-centos7:centos7|postgresql:10"
114115
postgresql_version="10"
116+
branch="2.2.x"
115117
fi
116118
for template in $EPHEMERAL_TEMPLATES; do
117-
branch="2.2.x"
119+
118120
ct_os_test_template_app "$IMAGE_NAME" \
119121
"https://raw.githubusercontent.com/sclorg/django-ex/${branch}/openshift/templates/${template}" \
120122
python \

0 commit comments

Comments
 (0)