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.
2 parents 55a55ea + b434f69 commit 0ae1d24Copy full SHA for 0ae1d24
ruff.toml
@@ -1,4 +1,8 @@
1
[lint]
2
+extend-select = [
3
+ "C901",
4
+ "W",
5
+]
6
ignore = [
7
# https://docs.astral.sh/ruff/formatter/#conflicting-lint-rules
8
"W191",
setup.cfg
@@ -41,8 +41,6 @@ testing =
41
docs =
42
# upstream
43
sphinx >= 3.5
44
- # workaround for sphinx/sphinx-doc#11662
45
- sphinx < 7.2.5
46
jaraco.packaging >= 9.3
47
rst.linker >= 1.9
48
furo
tox.ini
@@ -14,6 +14,7 @@ extras =
14
[testenv:diffcov]
15
description = run tests and check that diff from main is covered
16
deps =
17
+ {[testenv]deps}
18
diff-cover
19
commands =
20
pytest {posargs} --cov-report xml
0 commit comments