diff -r d88e53da6e66 -r 1afb90182258 eric7/Debugger/DebuggerInterfaceNone.py --- a/eric7/Debugger/DebuggerInterfaceNone.py Wed May 18 09:19:09 2022 +0200 +++ b/eric7/Debugger/DebuggerInterfaceNone.py Wed May 18 10:54:32 2022 +0200 @@ -543,75 +543,7 @@ @type str """ return - - def remoteUTDiscover(self, syspath, workdir, discoveryStart): - """ - Public method to perform a test case discovery. - - @param syspath list of directories to be added to sys.path on the - remote side - @type list of str - @param workdir path name of the working directory - @type str - @param discoveryStart directory to start auto-discovery at - @type str - """ - return - - def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, - syspath, workdir, discover, discoveryStart, testCases, - debug): - """ - Public method to prepare a new unittest run. - - @param fn name of file to load - @type str - @param tn name of test to load - @type str - @param tfn test function name to load tests from - @type str - @param failed list of failed test, if only failed test should be run - @type list of str - @param cov flag indicating collection of coverage data is requested - @type bool - @param covname name of file to be used to assemble the coverage caches - filename - @type str - @param coverase flag indicating erasure of coverage data is requested - @type bool - @param syspath list of directories to be added to sys.path on the - remote side - @type list of str - @param workdir path name of the working directory - @type str - @param discover flag indicating to discover the tests automatically - @type bool - @param discoveryStart directory to start auto-discovery at - @type str - @param testCases list of test cases to be loaded - @type list of str - @param debug flag indicating to run unittest with debugging - @type bool - """ - return - - def remoteUTRun(self, debug, failfast): - """ - Public method to start a unittest run. - - @param debug flag indicating to run unittest with debugging - @type bool - @param failfast flag indicating to stop at the first error - @type bool - """ - return - - def remoteUTStop(self): - """ - public method to stop a unittest run. - """ - return - + def createDebuggerInterfaceNone(debugServer, passive): """