mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-08-28 18:08:19 +08:00
14 lines
467 B
TOML
14 lines
467 B
TOML
[environment]
|
|
# Galaxy's sources live in lib/ (not the conventional ./ or ./src/) and the
|
|
# project is not installed into the venv (uv `package = false`), so tools
|
|
# need to be told where first-party modules are. `test` is also a root so
|
|
# relative imports in the test suite (e.g. `from ..util import ...`) resolve.
|
|
root = ["lib", "test"]
|
|
|
|
[src]
|
|
include = ["lib", "test"]
|
|
exclude = [
|
|
"lib/tool_shed/test/test_data/repos",
|
|
"test/functional/tools/cwl_tools",
|
|
]
|