From fd0baa6905847414216a9c7a791be4a3d9ce19ab Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 20 Mar 2024 08:54:59 +0100 Subject: [PATCH] Fix supported matrix Signed-off-by: Petr "Stone" Hracek --- tests/test_django.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/test_django.py b/tests/test_django.py index 5ed077dd..0c1093a3 100644 --- a/tests/test_django.py +++ b/tests/test_django.py @@ -26,6 +26,8 @@ class TestDancerAppExTemplate: def test_template_inside_cluster(self): if VERSION == "3.11-ubi8" or VERSION == "3.11-ubi9": branch_to_test = "4.2.x" + elif VERSION == "3.9-ubi9": + branch_to_test = "2.2.x" else: branch_to_test = "master" expected_output = "Welcome to your Django application" @@ -44,6 +46,8 @@ class TestDancerAppExTemplate: def test_template_by_request(self): if VERSION == "3.11-ubi8" or VERSION == "3.11-ubi9": branch_to_test = "4.2.x" + elif VERSION == "3.9-ubi9": + branch_to_test = "2.2.x" else: branch_to_test = "master" expected_output = "Welcome to your Django application"