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 2750253 commit 3c0cff3Copy full SHA for 3c0cff3
1 file changed
tests/ruff.toml
@@ -0,0 +1,13 @@
1
+# This extend our general Ruff rules specifically for tests
2
+extend = "../pyproject.toml"
3
+
4
+extend-select = [
5
+ "PT", # Use @pytest.fixture without parentheses
6
+]
7
8
+extend-ignore = [
9
+ "S101", # Use of assert detected. As these are tests...
10
+ "S106", # Detection of passwords...
11
+ "SLF001", # Tests will access private/protected members...
12
+ "TCH002", # pytest doesn't like this one...
13
0 commit comments