Skip to content

Commit

Permalink
Fix CWL no job gold standard task inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Boogie3D committed Jan 17, 2024
1 parent c5f8034 commit b95b636
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions beeflow/tests/test_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,8 @@ def test_parse_workflow_no_job(self):
hints=[Hint(class_='DockerRequirement',
params={'dockerImageId': '/usr/projects/beedev/clamr/clamr-toss.tar.gz'})],
requirements=[],
inputs=[],
inputs=[StepInput(id='infile', type='File', value=None, default='lorem.txt',
source='infile', prefix=None, position=1, value_from=None)],
outputs=[StepOutput(id='clamr/outfile', type='stdout', value=None,
glob='graphics_output')],
stdout='graphics_output',
Expand All @@ -175,7 +176,8 @@ def test_parse_workflow_no_job(self):
base_command='ffmpeg -f image2 -i $HOME/graphics_output/graph%05d.png -r 12 -s 800x800 -pix_fmt yuv420p $HOME/CLAMR_movie.mp4', # noqa
hints=[],
requirements=[],
inputs=[],
inputs=[StepInput(id='infile', type='File', value=None, default='graphics_output',
source='clamr/outfile', prefix=None, position=1, value_from=None)],
outputs=[StepOutput(id='ffmpeg/outfile', type='stdout', value=None,
glob='CLAMR_movie.mp4')],
stdout='CLAMR_movie.mp4',
Expand Down

0 comments on commit b95b636

Please sign in to comment.