6893:d29a7b8fab0f | 6894:df83ac87e0db |
---|---|
407 @param text the text to be completed (string) | 407 @param text the text to be completed (string) |
408 """ | 408 """ |
409 return | 409 return |
410 | 410 |
411 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, | 411 def remoteUTPrepare(self, fn, tn, tfn, failed, cov, covname, coverase, |
412 syspath): | 412 syspath, workdir, discover, discoveryStart): |
413 """ | 413 """ |
414 Public method to prepare a new unittest run. | 414 Public method to prepare a new unittest run. |
415 | 415 |
416 @param fn name of file to load | 416 @param fn name of file to load |
417 @type str | 417 @type str |
429 @param coverase flag indicating erasure of coverage data is requested | 429 @param coverase flag indicating erasure of coverage data is requested |
430 @type bool | 430 @type bool |
431 @param syspath list of directories to be added to sys.path on the | 431 @param syspath list of directories to be added to sys.path on the |
432 remote side | 432 remote side |
433 @type list of str | 433 @type list of str |
434 @param workdir path name of the working directory | |
435 @type str | |
436 @param discover flag indicating to discover the tests automatically | |
437 @type bool | |
438 @param discoveryStart directory to start auto-discovery at | |
439 @type str | |
434 """ | 440 """ |
435 return | 441 return |
436 | 442 |
437 def remoteUTRun(self): | 443 def remoteUTRun(self): |
438 """ | 444 """ |