forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlaunch_gitpod.json
46 lines (46 loc) · 1.6 KB
/
launch_gitpod.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
{
"version": "0.2.0",
"configurations": [
{
"name": "GalaxyFastAPI uvicorn",
"type": "python",
"request": "launch",
"module": "uvicorn",
"args": ["--app-dir", "lib", "--factory", "galaxy.webapps.galaxy.fast_factory:factory"],
"env": {
"GALAXY_CONFIG_FILE": "${workspaceFolder}/config/galaxy.yml",
"GALAXY_CONDA_AUTO_INIT": "false",
"GALAXY_CONFIG_TOOL_CONFIG_FILE": "lib/galaxy/config/sample/tool_conf.xml.sample,test/functional/tools/sample_tool_conf.xml",
"GALAXY_CONFIG_DATABASE_CONNECTION": "postgresql://localhost/galaxy"
}
},
{
"name": "Tool test framework",
"type": "python",
"request": "launch",
"program": "${workspaceFolder}/.venv/bin/pytest",
"args": [
"test/functional/test_toolbox_pytest.py",
"-m",
"tool",
"-k",
"job_properties_test_2"
]
},
{
"type": "node",
"name": "debug selected jest unit test",
"request": "launch",
"program": "${workspaceFolder}/client/node_modules/jest/bin/jest",
"args": [
"--runInBand",
"--config",
"${workspaceFolder}/client/tests/jest/jest.config.js",
"${file}"
],
"cwd": "${workspaceFolder}/client",
"console": "integratedTerminal",
"disableOptimisticBPs": true
}
]
}