mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 05:45:37 +08:00
15 lines
366 B
Bash
15 lines
366 B
Bash
#!/bin/sh
|
|
|
|
cp datatype_converters_conf.xml.sample datatype_converters_conf.xml
|
|
|
|
dropdb buildbot_galaxy_functional_tests
|
|
createdb buildbot_galaxy_functional_tests
|
|
|
|
export GALAXY_TEST_DBURI=postgres:///buildbot_galaxy_functional_tests
|
|
|
|
./nosetests.sh -v -w test \
|
|
--with-nosehtml \
|
|
--html-report-file buildbot_functional_tests.html \
|
|
--exclude="^get" \
|
|
functional
|