Skip to content

Commit

Permalink
Allow config of shed tool conf used with run_tests.sh -installed.
Browse files Browse the repository at this point in the history
Set with GALAXY_TEST_SHED_TOOL_CONF.

This is required to implement galaxyproject/planemo#176.
  • Loading branch information
jmchilton committed Aug 4, 2015
1 parent af77c0b commit 835016f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion scripts/functional_tests.py
Expand Up @@ -74,7 +74,10 @@
default_galaxy_locales = 'en'
default_galaxy_test_file_dir = "test-data,https://github.com/galaxyproject/galaxy-test-data.git"
migrated_tool_panel_config = 'config/migrated_tools_conf.xml'
installed_tool_panel_configs = [ 'config/shed_tool_conf.xml' ]
installed_tool_panel_configs = [
os.environ.get('GALAXY_TEST_SHED_TOOL_CONF', 'config/shed_tool_conf.xml')
]


# should this serve static resources (scripts, images, styles, etc.)
STATIC_ENABLED = True
Expand Down

0 comments on commit 835016f

Please sign in to comment.