Skip to content

Commit 8e3cd11

Browse files
authored
Merge branch 'main' into feat/css-refactor
2 parents 722e3c6 + 53a9580 commit 8e3cd11

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

.github/workflows/codecov.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19-
python-version: ["3.10", "3.11", "3.12"] # latest release minus two
19+
python-version: ["3.9", "3.10", "3.11", "3.12"] # latest release minus two
2020
requirements-file: [
2121
dj42_cms311.txt,
2222
dj42_cms41.txt,
@@ -27,6 +27,10 @@ jobs:
2727
ubuntu-latest,
2828
]
2929
exclude:
30+
- python-version: "3.9"
31+
requirements-file: dj50_cms41.txt
32+
- python-version: "3.9"
33+
requirements-file: dj51_cms41.txt
3034
- python-version: "3.12"
3135
requirements-file: dj42_cms311.txt
3236

tests/link/test_migration.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
import sys
2+
from unittest import skipIf
3+
14
from django.test.testcases import TestCase
25

36

7+
@skipIf(sys.version_info < (3, 10), "Python 3.10 or higher required")
48
class LinkMigrationTestCase(TestCase):
59
def setUp(self):
610
import importlib

0 commit comments

Comments
 (0)