mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-01 15:37:32 +08:00
d0f6dbb87d
This commit implements a fully-automated development setup using Gitpod.io, an online IDE for GitLab, GitHub, and Bitbucket that enables Dev-Environments-As-Code. This makes it easy for anyone to get a ready-to-code workspace for any branch, issue or pull request almost instantly with a single click. Includes vscode gitpod config for debugging and testing.
14 lines
328 B
JSON
14 lines
328 B
JSON
{
|
|
"python.testing.pytestArgs": [
|
|
"--doctest-modules",
|
|
"lib/galaxy_test/api/",
|
|
"lib/galaxy/datatypes",
|
|
"test/unit",
|
|
"test/integration",
|
|
"lib/galaxy_test/selenium/"
|
|
],
|
|
"python.testing.pytestEnabled": true,
|
|
"python.envFile": "${workspaceFolder}/.vscode/.test.env"
|
|
}
|
|
|