Skip to content

Commit 9825888

Browse files
authored
Add Python API unit tests and enable TEST_GREP filtering (#839)
* Add Python API unit tests and enable TEST_GREP filtering * test updates * paths with spaces * fix paths
1 parent 7701f8d commit 9825888

File tree

3 files changed

+693
-4
lines changed

3 files changed

+693
-4
lines changed

.vscode/launch.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@
2424
"request": "launch",
2525
"runtimeExecutable": "${execPath}",
2626
"args": [
27-
"./out/test/**/*.unit.test.js",
2827
"--extensionDevelopmentPath=${workspaceFolder}",
29-
"--extensionTestsPath=${workspaceFolder}/out/test/unittest/index",
30-
//"--grep", "<suite name>",
31-
"--timeout=300000"
28+
"--extensionTestsPath=${workspaceFolder}/out/test/unittest/index"
3229
],
30+
"env": {
31+
"TEST_GREP": "Python API Tests"
32+
},
3333
"outFiles": ["${workspaceFolder}/out/**/*.js"],
3434
"preLaunchTask": "tasks: watch-tests"
3535
}

0 commit comments

Comments
 (0)