Skip to content

Commit 75d47b2

Browse files
committed
vscodium config adjusted
1 parent 6f5aaec commit 75d47b2

File tree

5 files changed

+55
-5
lines changed

5 files changed

+55
-5
lines changed

.env

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
PYTHONPATH=${workspaceFolder}${pathSeparator}src
1+
PYTHONPATH="./src"
2+
TESTLINK_API_PYTHON_SERVER_URL="http://localhost:8085/lib/api/xmlrpc/v1/xmlrpc.php"
3+
TESTLINK_API_PYTHON_DEVKEY="48072c25257af9f477a22c97a3858337"

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

.vscode/settings.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"python.autoComplete.extraPaths": [
3+
"${workspaceRoot}/src"
4+
],
5+
"python.testing.pytestArgs": [
6+
"test"
7+
],
8+
"python.testing.unittestEnabled": false,
9+
"python.testing.pytestEnabled": true
10+
11+
}

.vscode/tasks.json

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "echo",
8+
"type": "shell",
9+
"command": "echo Hello"
10+
},
11+
{
12+
"label": "test Testlink Api sample",
13+
"type": "process",
14+
"detail": "Run sample Testlink Api Python Client communication",
15+
"command": "${config:python.defaultInterpreterPath}",
16+
"args": [ "${workspaceFolder}/example/${input:apiSample}.py" ],
17+
"group": "test",
18+
"presentation": {
19+
"clear": true,
20+
"panel": "dedicated"
21+
},
22+
"problemMatcher": ["$python"],
23+
"options": {
24+
"cwd": "${workspaceFolder}",
25+
"env": { "PYTHONPATH" : "./src",
26+
"TESTLINK_API_PYTHON_SERVER_URL" : "http://localhost:8085/lib/api/xmlrpc/v1/xmlrpc.php",
27+
"TESTLINK_API_PYTHON_DEVKEY" : "48072c25257af9f477a22c97a3858337"
28+
}
29+
}
30+
}
31+
],
32+
"inputs": [
33+
{
34+
"type": "pickString",
35+
"id": "apiSample",
36+
"description": "Which TL API sample to run ?",
37+
"options": ["TestLinkExample", "TestLinkExampleGenericApi","TestLinkExample_CF_KW","TestLinkExampleGenericApi_Req"],
38+
"default": "TestLinkExample"
39+
}
40+
]
41+
}

tl-pg-compose

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)