mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 05:45:37 +08:00
10 lines
349 B
Bash
Executable File
10 lines
349 B
Bash
Executable File
#!/bin/sh
|
|
|
|
## Excluding controllers due to the problematic genetrack dependency
|
|
## Excluding job runners due to various external dependencies
|
|
|
|
python ./scripts/nosetests.py -v -w lib \
|
|
--with-nosehtml --html-report-file run_unit_tests.html \
|
|
--with-doctest --exclude=functional --exclude="^get" \
|
|
--exclude=controllers --exclude=runners
|