Revision dc6bd057627bff64691e9d2c53ce833403bbb360 authored by John Chilton on 28 October 2020, 19:49:21 UTC, committed by John Chilton on 28 October 2020, 19:49:21 UTC
1 parent 4a7c3a2
Raw File
TESTING.md
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 `py35-lint` test environment: `tox -e py35-lint`

## ./run_tests.sh

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