We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02b17e7 commit e940fbaCopy full SHA for e940fba
.github/workflows/test.yml
@@ -49,6 +49,6 @@ jobs:
49
uv pip install -q "${{ matrix.django }}"
50
- name: Run tests
51
run: |
52
- uv run ruff .
+ uv run ruff check .
53
uv run ruff format --check .
54
uv run python -m pytest
pyproject.toml
@@ -47,6 +47,7 @@ dev = [
47
48
[tool.ruff]
line-length = 100
+[tool.ruff.lint]
select = [
"E",
"F",
@@ -56,7 +57,7 @@ select = [
56
57
"C4",
58
]
59
ignore = ["E501"]
-[tool.ruff.pyflakes]
60
+[tool.ruff.lint.pyflakes]
61
extend-generics = [
62
"mongoengine.queryset.QuerySetManager",
63
"mongoengine.queryset.QuerySet",
0 commit comments