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.
ruff.toml
1 parent a5bad4b commit 57088ccCopy full SHA for 57088cc
tests/ruff.toml
@@ -0,0 +1,14 @@
1
+# Extend the `pyproject.toml` file in the parent directory.
2
+extend = "../pyproject.toml"
3
+
4
+# And extend linting to include pytest specific rules and configuration
5
+[lint]
6
+extend-select = ["PT"]
7
+ignore = ["PT004", "PT011"]
8
9
+[lint.flake8-pytest-style]
10
+mark-parentheses = false
11
+fixture-parentheses = false
12
+parametrize-names-type = "csv"
13
+parametrize-values-type = "list"
14
+parametrize-values-row-type = "tuple"
0 commit comments