Skip to content

Commit

Permalink
Manually merge branch 'dev' for 2.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ksuderman committed Jul 24, 2024
2 parents 8074b29 + a5892ac commit d1716b1
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion abm/lib/benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -458,7 +458,7 @@ def wait_for_jobs(context, gi: GalaxyInstance, invocations: dict):
jobs = gi.jobs.get_jobs(history_id=hid)
for job in jobs:
data = gi.jobs.show_job(job['id'], full_details=True)
data['job_metrics'] = gi.jobs.get_job_metrics(job['id'])
data['job_metrics'] = gi.jobs.get_metrics(job['id'])
metrics = {
'run': run,
'cloud': cloud,
Expand Down
2 changes: 1 addition & 1 deletion abm/lib/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from ruamel.yaml import YAML

# Where we will look for our configuration file.
PROFILE_SEARCH_PATH = ['~/.abm/profile.yml', '.abm-profile.yml']
PROFILE_SEARCH_PATH = ['.abm/profile.yml', '~/.abm/profile.yml', '.abm-profile.yml']

# Deprecated. Do not use.
datasets = {
Expand Down
2 changes: 1 addition & 1 deletion abm/lib/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ def summarize(context: Context, args: list):
'runtime_seconds',
'cpuacct.usage',
'memory.limit_in_bytes',
'memory.peak'
'memory.peak',
#'memory.max_usage_in_bytes',
] # ,'memory.soft_limit_in_bytes']

Expand Down
4 changes: 4 additions & 0 deletions abm/lib/workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,10 @@ def import_from_config(context: Context, args: list):
print("ERROR: no workflow ID given")
return

if key.startswith('http'):
import_from_url(context, args)
return

if config is None:
config = find_config("workflows.yml")
if config is None:
Expand Down

0 comments on commit d1716b1

Please sign in to comment.