You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"signal_handling: Mark all tests that import the signal library and invoke signals. This MUST be done on the main thread, and can cause errors if pytest-xdist subordinates parellel test sessions to background threads.",
140
-
141
140
# These are "auto" marked based on fixture usage. See conftest.py pytest_collection_modifyitems
142
141
"spark: Mark all tests using the spark fixture. Can be selected with -m spark or deselected with -m (not spark)",
143
142
"database: Mark all integration tests using a database. Can be selected with -m database or deselected with -m (not database)",
144
143
"elasticsearch: Mark all integration tests using Elasticsearch. Can be selected with -m database or deselected with -m (not elasticsearch)",
145
144
]
146
145
pythonpath = [
147
-
"."
146
+
"."
148
147
]
149
148
150
149
[tool.coverage.run]
@@ -174,25 +173,25 @@ exclude = [
174
173
]
175
174
176
175
select = [
177
-
"PLR0913", # max arguments in function
178
-
"PLR0904", # max number of public methods
179
-
"PLR0911", # max number of return statements
180
-
"PLR0916", # max number of boolean expressions
181
-
"PLR0915", # max number of lines in a function
182
-
"PLR0912", # max number of logical branches in a function
183
-
"PLR1702", # max number of nested blocks
184
-
"C901", # cognitive complexity (functions)
185
-
"I001", # unsorted imports
186
-
"B", # flake8 bugbear
187
-
"E", # pycodestyle errors
188
-
"F", # pyflakes
189
-
"W", # pycodestyle warnings
190
-
"ANN001", # missing type annotation for function argument
191
-
"ANN201", # missing return type annotation for public function or method
192
-
"ANN202", # missing return type annotation for private function or method
176
+
"PLR0913", # max arguments in function
177
+
"PLR0904", # max number of public methods
178
+
"PLR0911", # max number of return statements
179
+
"PLR0916", # max number of boolean expressions
180
+
"PLR0915", # max number of lines in a function
181
+
"PLR0912", # max number of logical branches in a function
182
+
"PLR1702", # max number of nested blocks
183
+
"C901", # cognitive complexity (functions)
184
+
"I001", # unsorted imports
185
+
"B", # flake8 bugbear
186
+
"E", # pycodestyle errors
187
+
"F", # pyflakes
188
+
"W", # pycodestyle warnings
189
+
"ANN001", # missing type annotation for function argument
190
+
"ANN201", # missing return type annotation for public function or method
191
+
"ANN202", # missing return type annotation for private function or method
0 commit comments