https://bitbucket.org/cmungall/galaxy-obo
Raw File
Tip revision: 3e0af213ccd1388ef0107156903a309bf423b0bd authored by Chris Mungall on 31 May 2013, 17:50:52 UTC
add amelias scripts
Tip revision: 3e0af21
run_unit_tests.sh
#!/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
back to top