mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-19 02:21:32 +08:00
Previously, when running pytest from `packages/test.sh`, it was using our main `pytest.ini` as configfile, therefore setting the wrong rootdir and using `lib` as `pythonpath`. This was hiding various packaging issues fixed in the previous commits.
7 lines
448 B
INI
7 lines
448 B
INI
[pytest]
|
|
# Prevent execution of alembic/env.py at test collection stage (alembic.context not set).
|
|
# Also ignore functional tests (galaxy_test/ and tool_shed/test/).
|
|
addopts = --doctest-modules --ignore=galaxy/model/migrations/alembic/ --ignore=galaxy/tools/bundled/ --ignore=galaxy_test/ --ignore=tool_shed/test/ --ignore=tool_shed/webapp/model/migrations/alembic/ --doctest-continue-on-failure --verbosity=1
|
|
asyncio_mode = auto
|
|
log_level = DEBUG
|