Skip to content

Commit

Permalink
switch test_input_to_output in test_exposure_pipeline.py to use r…
Browse files Browse the repository at this point in the history
…un (#1572)
  • Loading branch information
braingram authored Dec 20, 2024
2 parents efcc040 + b045b62 commit f538ba0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion romancal/pipeline/tests/test_exposure_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ def test_input_to_output(input_value, expected_output_type):
pipeline.prefetch_references = False
# skip all steps
[setattr(getattr(pipeline, k), "skip", True) for k in pipeline.step_defs]
output_value = pipeline(input_value)
output_value = pipeline.run(input_value)
assert isinstance(output_value, expected_output_type)

0 comments on commit f538ba0

Please sign in to comment.