Skip to content

Commit 85ef457

Browse files
committed
Removed testing Python 3.14 due to a bug in pluggy
1 parent 8a35ea5 commit 85ef457

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
- '3.11'
2727
- '3.12'
2828
- '3.13'
29-
- '3.14'
29+
# - '3.14'
3030

3131
steps:
3232
- uses: actions/checkout@v4

tox.ini

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,12 @@ envlist =
77
py311-django{52,51,50,42}
88
py312-django{52,51,50,42}
99
py313-django{52,51,50,42}
10-
py314-django{52,51}
10+
# Enable when pluggy 1.5.1 is released as that should hopefully fix the return within the exception
11+
# py314-django{52,51}
1112

1213
[pytest]
1314
django_find_project = false
1415

15-
# Attempt to work around pluggy bug for Python 3.14 - https://github.com/pytest-dev/pluggy/issues/573
16-
[tool.pytest.ini_options]
17-
filterwarnings = ["error"]
18-
1916
[testenv]
2017
deps =
2118
pytest
@@ -78,8 +75,8 @@ deps = -rrequirements/py313-django51.txt
7875
[testenv:py313-django52]
7976
deps = -rrequirements/py313-django52.txt
8077

81-
[testenv:py314-django51]
82-
deps = -rrequirements/py314-django51.txt
83-
84-
[testenv:py314-django52]
85-
deps = -rrequirements/py314-django52.txt
78+
;[testenv:py314-django51]
79+
;deps = -rrequirements/py314-django51.txt
80+
;
81+
;[testenv:py314-django52]
82+
;deps = -rrequirements/py314-django52.txt

0 commit comments

Comments
 (0)