We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c93e722 commit e38c436Copy full SHA for e38c436
planemo/galaxy/config.py
@@ -211,9 +211,12 @@ def config_join(*args):
211
)
212
tool_config_file = "%s,%s" % (tool_conf, shed_tool_conf)
213
user_email = kwds.get("galaxy_email")
214
+ # Setup both galaxy_email and older test user test@bx.psu.edu
215
+ # as admins for command_line, etc...
216
properties = dict(
217
single_user=user_email,
- admin_users=user_email,
218
+ admin_users="%s,test@bx.psu.edu" % user_email,
219
+ expose_dataset_path="True",
220
ftp_upload_dir_template="${ftp_upload_dir}",
221
ftp_upload_purge="False",
222
ftp_upload_dir=test_data_dir or os.path.abspath('.'),
0 commit comments