Files
galaxy/test/TESTING.md
T
Nicola Soranzo 9d74bba7fb Drop support for retired Python 3.5
Upgrade syntax using `pyupgrade --py36-plus` .

Manually drop several `six` imports.

Also:
- Remove broken pr_cache in scripts/bootstrap_history.py
- Fix broken prefix removal in lib/galaxy/tool_util/deps/mulled/mulled_build.py
2020-10-07 11:52:13 +01:00

536 B

Galaxy Testing

The Galaxy codebase is large and contains many kinds of tests. The simpler tests can be run via tox, while the others via ./run_tests.sh .

tox

tox needs to be installed in your Python virtualenv with pip install tox .

To view the list of available "test environments" for tox: tox -l

To run the test for e.g. the py36-lint test environment: tox -e py36-lint

./run_tests.sh

To view the list of available tests and how to run them: ./run_tests.sh --help from Galaxy root directory