commit/galaxy-central: 2 new changesets
2 new commits in galaxy-central: https://bitbucket.org/galaxy/galaxy-central/commits/86241a27f4d8/ Changeset: 86241a27f4d8 User: jmchilton Date: 2014-12-27 22:49:16+00:00 Summary: Add --no_cleanup option to tests. Affected #: 1 file diff -r 1ed5a63aae0a5c8091483658c579d9d762a4c3fb -r 86241a27f4d8d7065fb7908a0e687d6b11a062eb run_tests.sh --- a/run_tests.sh +++ b/run_tests.sh @@ -21,6 +21,12 @@ '${0##*/} -unit testscriptath' running particular tests scripts '${0##*/} -qunit' for running qunit JavaScript tests '${0##*/} -qunit testname' for running single JavaScript test with given name + +Extra options: + + --no_cleanup Do not delete temp files for Python functional tests (-toolshed, -framework, etc...) + --report_file Path of HTML report to produce (for Python Galaxy functional tests). + --xunit_report_file Path of XUnit report to produce (for Python Galaxy functional tests). EOF } @@ -196,6 +202,16 @@ shift 1 fi ;; + --no_cleanup) + GALAXY_TEST_NO_CLEANUP=1 + export GALAXY_TEST_NO_CLEANUP + TOOL_SHED_TEST_NO_CLEANUP=1 + export TOOL_SHED_TEST_NO_CLEANUP + GALAXY_INSTALL_TEST_NO_CLEANUP=1 + export GALAXY_INSTALL_TEST_NO_CLEANUP + echo "Skipping Python test clean up." + shift + ;; -watch|--watch) # Have grunt watch test or directory for changes, only # valid for javascript testing. https://bitbucket.org/galaxy/galaxy-central/commits/461a6a937900/ Changeset: 461a6a937900 User: jmchilton Date: 2014-12-27 22:49:16+00:00 Summary: Skip checking tool migrations for Galaxy in tool shed tests. Affected #: 1 file diff -r 86241a27f4d8d7065fb7908a0e687d6b11a062eb -r 461a6a9379001959b5b3259f90a2b9471ce391ed test/tool_shed/functional_tests.py --- a/test/tool_shed/functional_tests.py +++ b/test/tool_shed/functional_tests.py @@ -359,6 +359,7 @@ database_connection = galaxy_database_connection, database_auto_migrate = galaxy_database_auto_migrate, datatype_converters_config_file = "datatype_converters_conf.xml.sample", + check_migrate_tools = False, enable_tool_shed_check = True, file_path = galaxy_file_path, global_conf = galaxy_global_conf, Repository URL: https://bitbucket.org/galaxy/galaxy-central/ -- This is a commit notification from bitbucket.org. You are receiving this because you have the service enabled, addressing the recipient of this email.
participants (1)
-
commits-noreply@bitbucket.org