We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adde84a commit d7906ffCopy full SHA for d7906ff
test/test-lib-python.sh
@@ -80,7 +80,16 @@ function test_python_s2i_app_ex_standalone() {
80
}
81
82
function test_python_s2i_app_ex() {
83
- django_example_repo_url="https://github.com/sclorg/django-ex.git#2.2.x"
+ if [[ "${VERSION}" == *"minimal"* ]]; then
84
+ VERSION=$(echo "${VERSION}" | cut -d "-" -f 1)
85
+ fi
86
+ if [[ "${VERSION}" == "3.11" ]] || [[ "${VERSION}" == "3.12" ]]; then
87
+ branch="4.2.x"
88
+ else
89
+ branch="2.2.x"
90
91
+
92
+ django_example_repo_url="https://github.com/sclorg/django-ex.git#${branch}"
93
ct_os_test_s2i_app "${IMAGE_NAME}" \
94
"${django_example_repo_url}" \
95
. \
0 commit comments