@@ -144,9 +144,7 @@ class DiscoverRunner:
144144 @contextmanager
145145 def load_with_patterns (self ) -> Iterator [None ]: ...
146146 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 : ...
150148 def setup_databases (self , ** kwargs : Any ) -> list [tuple [BaseDatabaseWrapper , str , bool ]]: ...
151149 def get_resultclass (self ) -> type [TextTestResult ] | None : ...
152150 def get_test_runner_kwargs (self ) -> dict [str , Any ]: ...
@@ -157,7 +155,7 @@ class DiscoverRunner:
157155 def suite_result (self , suite : TestSuite , result : TextTestResult , ** kwargs : Any ) -> int : ...
158156 def _get_databases (self , suite : TestSuite ) -> set [str ]: ...
159157 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 : ...
161159
162160def is_discoverable (label : str ) -> bool : ...
163161def reorder_suite (
0 commit comments