-
Notifications
You must be signed in to change notification settings - Fork 5
/
launch.json
123 lines (123 loc) · 3.53 KB
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"configurations": [
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal",
},
{
"name": "Header Lint",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/tools/add_header",
"args": [
"-i",
"--disable-add-me",
"lib/rucio/tests/test_trace.py"
],
"console": "integratedTerminal"
},
{
"name": "Autotest Run",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/tools/test/run_tests.py",
"console": "integratedTerminal",
"args": [
"<",
"${workspaceFolder}/tools/test/run_tests_sample_input.json"
],
"justMyCode": false
},
{
"name": "Test Image Build",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/tools/test/build_images.py",
"console": "integratedTerminal",
"args": [
"etc/docker/test",
"/<",
"${workspaceFolder}/tools/test/build_images_sample_input.json"
]
},
{
"name": "VoTest Helper",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/tools/test/votest_helper.py",
"console": "integratedTerminal",
"args": [
"-v",
"--vo",
"atlas",
"-t",
"--file",
"${workspaceFolder}/etc/docker/test/matrix_policy_package_tests.yml"
]
},
{
"name": "Rucio: CLI Debug",
"type": "python",
"request": "attach",
"justMyCode": false,
"connect": {
"host": "0.0.0.0",
"port": 5680
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}",
"remoteRoot": "/opt/rucio"
}
]
},
{
"name": "PyTest: Debug",
"type": "python",
"request": "attach",
"preLaunchTask": "rucio-pytest:debug",
"justMyCode": false,
"connect": {
"host": "0.0.0.0",
"port": 5681
},
"pathMappings": [
{
"localRoot": "${workspaceFolder}/",
"remoteRoot": "/opt/rucio"
}
]
},
{
"name": "UI: Debug",
"type": "python",
"request": "attach",
"port": 5678,
"host": "0.0.0.0",
"justMyCode": false,
"pathMappings": [
{
"localRoot": "${workspaceFolder}/",
"remoteRoot": "/opt/rucio"
}
]
},
{
"name": "Server: Debug",
"type": "python",
"request": "attach",
"port": 5679,
"host": "0.0.0.0",
"justMyCode": false,
"pathMappings": [
{
"localRoot": "${workspaceFolder}/",
"remoteRoot": "/opt/rucio"
}
]
}
]
}