@@ -144,9 +144,7 @@ class DiscoverRunner:
144
144
@contextmanager
145
145
def load_with_patterns (self ) -> Iterator [None ]: ...
146
146
def load_tests_for_label (self , label : str , discover_kwargs : dict [str , str ]) -> TestSuite : ...
147
- def build_suite (
148
- self , test_labels : Sequence [str ] = ..., extra_tests : list [Any ] | None = ..., ** kwargs : Any
149
- ) -> TestSuite : ...
147
+ def build_suite (self , test_labels : Sequence [str ] | None = ..., ** kwargs : Any ) -> TestSuite : ...
150
148
def setup_databases (self , ** kwargs : Any ) -> list [tuple [BaseDatabaseWrapper , str , bool ]]: ...
151
149
def get_resultclass (self ) -> type [TextTestResult ] | None : ...
152
150
def get_test_runner_kwargs (self ) -> dict [str , Any ]: ...
@@ -157,7 +155,7 @@ class DiscoverRunner:
157
155
def suite_result (self , suite : TestSuite , result : TextTestResult , ** kwargs : Any ) -> int : ...
158
156
def _get_databases (self , suite : TestSuite ) -> set [str ]: ...
159
157
def get_databases (self , suite : TestSuite ) -> set [str ]: ...
160
- def run_tests (self , test_labels : list [str ], extra_tests : list [ Any ] | None = ..., ** kwargs : Any ) -> int : ...
158
+ def run_tests (self , test_labels : list [str ], ** kwargs : Any ) -> int : ...
161
159
162
160
def is_discoverable (label : str ) -> bool : ...
163
161
def reorder_suite (
0 commit comments