Skip to content

Commit e38c436

Browse files
committed
Attempt to fix missing command_line in output json.
1 parent c93e722 commit e38c436

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

planemo/galaxy/config.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,9 +211,12 @@ def config_join(*args):
211211
)
212212
tool_config_file = "%s,%s" % (tool_conf, shed_tool_conf)
213213
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...
214216
properties = dict(
215217
single_user=user_email,
216-
admin_users=user_email,
218+
admin_users="%s,test@bx.psu.edu" % user_email,
219+
expose_dataset_path="True",
217220
ftp_upload_dir_template="${ftp_upload_dir}",
218221
ftp_upload_purge="False",
219222
ftp_upload_dir=test_data_dir or os.path.abspath('.'),

0 commit comments

Comments
 (0)