Skip to content

Commit

Permalink
fix: some test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
vinitkumar committed Nov 30, 2024
1 parent 37b523b commit 0554b7c
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 499 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ exclude = [
".venv",
"**/migrations/**",
]
ignore = [
lint.ignore = [
"E501", # line too long
"F403", # 'from module import *' used; unable to detect undefined names
"E701", # multiple statements on one line (colon)
"F401", # module imported but unused
]
line-length = 119
select = [
lint.select = [
"I",
"E",
"F",
Expand Down
6 changes: 2 additions & 4 deletions tests/requirements/compile.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,6 @@
from subprocess import run

CONFIG_MATRIX = [
["python3.8", "Django>=3.2a1,<3.3", "django-cms>=3.8,<3.9", "py38-django32-cms38.txt",],
["python3.8", "Django>=3.2a1,<3.3", "django-cms>=3.9,<3.10", "py38-django32-cms39.txt",],
["python3.8", "Django>=3.2a1,<3.3", "django-cms>=3.10,<3.11", "py38-django32-cms310.txt",],

["python3.9", "Django>=3.2a1,<3.3", "django-cms>=3.8,<3.9", "py39-django32-cms38.txt",],
["python3.9", "Django>=3.2a1,<3.3", "django-cms>=3.9,<3.10", "py39-django32-cms39.txt",],
["python3.9", "Django>=3.2a1,<3.3", "django-cms>=3.10,<3.11", "py39-django32-cms310.txt",],
Expand All @@ -47,6 +43,8 @@
["python3.10", "Django>=4.2a1,<5.0", "django-cms>=3.11,<4.0", "py310-django42-cms311.txt",],

["python3.11", "Django>=4.2a1,<5.0", "django-cms>=3.11,<4.0", "py311-django42-cms311.txt",],
["python3.12", "Django>=4.2a1,<5.0", "django-cms>=3.11,<4.0", "py311-django42-cms311.txt",],
["python3.13", "Django>=4.2a1,<5.0", "django-cms>=3.11,<4.0", "py311-django42-cms311.txt",],
]

if __name__ == "__main__":
Expand Down
164 changes: 0 additions & 164 deletions tests/requirements/py38-django32-cms310.txt

This file was deleted.

Loading

0 comments on commit 0554b7c

Please sign in to comment.