Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion configs/butler-seed.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ datastore:
calexp:
formatter: lsst.obs.base.formatters.fitsExposure.FitsExposureFormatter
parameters:
recipe: lossyBasic
recipe: lossy16
8 changes: 4 additions & 4 deletions tests/test_validate_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,10 @@ def test_calexp(self):
# TODO: Find a way to tighten psf-related atol in DM-46415.
psf_atol = 3e-5
for name, var, val, atol in [
("im_mean", im_mean, 4.45269697581625, standard_atol),
("im_std", im_std, 163.47350818645234, standard_atol),
("var_mean", var_mean, 51.76494665879407, standard_atol),
("var_std", var_std, 48.19509860934283, standard_atol),
("im_mean", im_mean, 4.452631054227751, standard_atol),
("im_std", im_std, 163.4734053610175, standard_atol),
("var_mean", var_mean, 51.76499345997559, standard_atol),
("var_std", var_std, 48.195043744459134, standard_atol),
("num_good_pix", num_good_pix, 7731814, 0),
("psf_ixx", psf_ixx, 4.25089264118243, psf_atol),
("psf_iyy", psf_iyy, 4.67312079513306, psf_atol),
Expand Down