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 8f315a1 commit a8d0ce7Copy full SHA for a8d0ce7
tests/__init__.py
tests/ruff.toml
@@ -0,0 +1,12 @@
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
+ "SLF001", # Tests will access private/protected members...
11
+ "TCH002", # pytest doesn't like this one...
12
0 commit comments