Skip to content

Commit

Permalink
Merge pull request galaxyproject#1226 from bernt-matthias/clean-job-dirs
Browse files Browse the repository at this point in the history
  • Loading branch information
nsoranzo authored Apr 8, 2022
2 parents cc07f0d + da1f09a commit a7046f5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion planemo/galaxy/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -607,14 +607,18 @@ def _shared_galaxy_properties(config_directory, kwds, for_tests):
'master_api_key': master_api_key,
'admin_users': "%s,[email protected]" % user_email,
'expose_dataset_path': "True",
'cleanup_job': 'never',
'collect_outputs_from': "job_working_directory",
'allow_path_paste': "True",
'check_migrate_tools': "False",
'use_cached_dependency_manager': str(kwds.get("conda_auto_install", False)),
'brand': kwds.get("galaxy_brand", DEFAULT_GALAXY_BRAND),
'strict_cwl_validation': str(not kwds.get("non_strict_cwl", False)),
}
if kwds.get("no_cleanup", False):
properties['cleanup_job'] = 'onsuccess'
else:
properties['cleanup_job'] = 'always'

if kwds.get("galaxy_single_user", True):
properties['single_user'] = user_email

Expand Down

0 comments on commit a7046f5

Please sign in to comment.