Skip to content

Commit

Permalink
copy changes for #948 and #1353 into multroot
Browse files Browse the repository at this point in the history
  • Loading branch information
DonJayamanne committed Oct 29, 2017
1 parent 6c1e207 commit c753dbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/client/unittests/unittest/runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ export function runTest(testManager: BaseTestManager, testResultsService: ITestR

testArgs.push(`--result-port=${port}`);
if (debug === true) {
testArgs.push(...['--secret=my_secret', '--port=3000']);
const debugPort = PythonSettings.getInstance(Uri.file(rootDirectory)).unitTest.debugPort;
testArgs.push(...['--secret=my_secret', `--port=${debugPort}`]);
}
testArgs.push(`--us=${startTestDiscoveryDirectory}`);
if (testId.length > 0) {
Expand Down

0 comments on commit c753dbe

Please sign in to comment.