Skip to content

Commit

Permalink
rename source_detection to source_catalog
Browse files Browse the repository at this point in the history
  • Loading branch information
braingram committed Dec 3, 2024
1 parent bd4f977 commit 1c47609
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions romancal/pipeline/exposure_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ def process(self, input):
log.info("Tweakreg step is being SKIPPED")
result.meta.cal_step.flat_field = "SKIPPED"
result.meta.cal_step.photom = "SKIPPED"
result.meta.cal_step.source_detection = "SKIPPED"
result.meta.cal_step.source_catalog = "SKIPPED"

Check warning on line 128 in romancal/pipeline/exposure_pipeline.py

View check run for this annotation

Codecov / codecov/patch

romancal/pipeline/exposure_pipeline.py#L122-L128

Added lines #L122 - L128 were not covered by tests

if any_saturated:
# the input association contains a fully saturated model
Expand Down Expand Up @@ -177,7 +177,7 @@ def create_fully_saturated_zeroed_image(self, input_model):
"assign_wcs",
"flat_field",
"photom",
"source_detection",
"source_catalog",
]:
fully_saturated_model.meta.cal_step[step_str] = "SKIPPED"

Expand Down
2 changes: 1 addition & 1 deletion romancal/regtest/test_wfi_image_pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ def test_all_saturated_against_truth(run_all_saturated, ignore_asdf_paths):
("assign_wcs", "SKIPPED"),
("flat_field", "SKIPPED"),
("photom", "SKIPPED"),
("source_detection", "SKIPPED"),
("source_catalog", "SKIPPED"),
("tweakreg", "SKIPPED"),
],
)
Expand Down

0 comments on commit 1c47609

Please sign in to comment.