File tree 2 files changed +16
-5
lines changed
openwisp_network_topology/tests
2 files changed +16
-5
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,24 @@ jobs:
24
24
fail-fast : false
25
25
matrix :
26
26
python-version :
27
- - " 3.8"
28
27
- " 3.9"
29
28
- " 3.10"
29
+ - " 3.11"
30
+ - " 3.12"
31
+ - " 3.13"
30
32
django-version :
31
- - django~=3.2.0
32
- - django~=4.1.0
33
33
- django~=4.2.0
34
+ - django~=5.1.0
35
+ - django~=5.2.0
36
+ exclude :
37
+ # Django 5.1+ requires Python >=3.10
38
+ - python-version : " 3.9"
39
+ django-version : django~=5.1.0
40
+ - python-version : " 3.9"
41
+ django-version : django~=5.2.0
42
+ # Python 3.13 supported only in Django >=5.1.3
43
+ - python-version : " 3.13"
44
+ django-version : django~=4.2.0
34
45
35
46
steps :
36
47
- uses : actions/checkout@v4
Original file line number Diff line number Diff line change @@ -60,10 +60,10 @@ def _create_link(self, **kwargs):
60
60
61
61
62
62
class LoggingDisabledTestRunner (TimeLoggingTestRunner ):
63
- def run_tests (self , test_labels , extra_tests = None , ** kwargs ):
63
+ def run_tests (self , test_labels , ** kwargs ):
64
64
# disable logging below CRITICAL while testing
65
65
logging .disable (logging .CRITICAL )
66
- return super ().run_tests (test_labels , extra_tests , ** kwargs )
66
+ return super ().run_tests (test_labels , ** kwargs )
67
67
68
68
69
69
class UnpublishMixin (object ):
You can’t perform that action at this time.
0 commit comments