File tree Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Expand file tree Collapse file tree 2 files changed +9
-6
lines changed Original file line number Diff line number Diff line change @@ -41,9 +41,12 @@ export CT_OCP4_TEST=true
41
41
test -n " ${IMAGE_NAME-} " || false ' make sure $IMAGE_NAME is defined'
42
42
test -n " ${VERSION-} " || false ' make sure $VERSION is defined'
43
43
44
-
45
- TEST_SUMMARY=' '
46
- TEST_SET=${TESTS:- $TEST_LIST } ct_run_tests_from_testset " openshift-remote-cluster"
44
+ if [[ " ${VERSION} " == " 3.9-minimal" ]] || [[ " ${VERSION} " == " 3.11-minimal" ]]; then
45
+ echo " Skipping tests for minimal images. We do not provide them in container catalog registry."
46
+ exit 0
47
+ else
48
+ TEST_SUMMARY=' '
49
+ TEST_SET=${TESTS:- $TEST_LIST } ct_run_tests_from_testset " openshift-remote-cluster"
50
+ fi
47
51
48
52
# vim: set tabstop=2:shiftwidth=2:expandtab:
49
-
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ function test_python_s2i_app_ex() {
83
83
if [[ " ${VERSION} " == * " minimal" * ]]; then
84
84
VERSION=$( echo " ${VERSION} " | cut -d " -" -f 1)
85
85
fi
86
- if [[ " ${VERSION} " == " 3.11" ]] || [[ " ${VERSION} " == " 3.12" ]]; then
86
+ if [[ " ${VERSION} " == " 3.11" ]] || [[ " ${VERSION} " == " 3.12" ]] || [[ " ${VERSION} " == " 3.12-minimal " ]] ; then
87
87
branch=" 4.2.x"
88
88
else
89
89
branch=" 2.2.x"
@@ -106,7 +106,7 @@ django-postgresql-persistent.json"
106
106
if [[ " ${VERSION} " == * " minimal" * ]]; then
107
107
VERSION=$( echo " ${VERSION} " | cut -d " -" -f 1)
108
108
fi
109
- if [[ " ${VERSION} " == " 3.11" ]] || [[ " ${VERSION} " == " 3.12" ]]; then
109
+ if [[ " ${VERSION} " == " 3.11" ]] || [[ " ${VERSION} " == " 3.12" ]] || [[ " ${VERSION} " == " 3.12-minimal " ]] ; then
110
110
postgresql_image=" quay.io/sclorg/postgresql-12-c8s|postgresql:12"
111
111
postgresql_version=" 12"
112
112
branch=" 4.2.x"
You can’t perform that action at this time.
0 commit comments