Skip to content

Commit

Permalink
Move integration workflows to ci/test_workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
jtronge committed Jan 18, 2024
1 parent 9a44594 commit a980890
Show file tree
Hide file tree
Showing 13 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions beeflow/common/integration_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ def checkpoint_restart(outer_workdir):
workdir = os.path.join(outer_workdir, uuid.uuid4().hex)
os.makedirs(workdir)
workflow = utils.Workflow('checkpoint-restart',
'beeflow/data/cwl/bee_workflows/clamr-wf-checkpoint',
'ci/test_workflows/clamr-wf-checkpoint',
main_cwl='clamr_wf.cwl', job_file='clamr_job.yml',
workdir=workdir, containers=[])
yield [workflow]
Expand All @@ -216,7 +216,7 @@ def checkpoint_restart_failure(outer_workdir):
workdir = os.path.join(outer_workdir, uuid.uuid4().hex)
os.makedirs(workdir)
workflow = utils.Workflow('checkpoint-too-long',
'beeflow/data/cwl/bee_workflows/checkpoint-too-long',
'ci/test_workflows/checkpoint-too-long',
main_cwl='workflow.cwl', job_file='input.yml',
workdir=workdir, containers=[])
yield [workflow]
Expand Down

0 comments on commit a980890

Please sign in to comment.