--- a/Debugger/DebugServer.py Fri Mar 22 19:31:56 2019 +0100 +++ b/Debugger/DebugServer.py Sat Mar 23 16:45:26 2019 +0100 @@ -1314,7 +1314,8 @@ def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, clientType="", forProject=False, venvName="", - syspath=None): + syspath=None, workdir="", discover=False, + discoveryStart=""): """ Public method to prepare a new unittest run. @@ -1342,6 +1343,12 @@ @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 """ if clientType and clientType not in self.getSupportedLanguages(): # a not supported client language was requested @@ -1366,7 +1373,8 @@ self.startClient(False, forProject=forProject, venvName=venvName) self.debuggerInterface.remoteUTPrepare( - fn, tn, tfn, failed, cov, covname, coverase, syspath) + fn, tn, tfn, failed, cov, covname, coverase, syspath, workdir, + discover, discoveryStart) self.debugging = False self.running = True