Skip to content

Commit

Permalink
Loosen some tolerance
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkannawadi committed Sep 20, 2024
1 parent 0911911 commit 1058139
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions tests/test_validate_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,14 +82,15 @@ def test_calexp(self):
("var_mean", var_mean, 51.764979094464934, standard_atol),
("var_std", var_std, 48.19498276625069, standard_atol),
("num_good_pix", num_good_pix, 7725755.00000000000000, 0),
("psf_ixx", psf_ixx, 4.253191896391297, standard_atol),
("psf_iyy", psf_iyy, 4.687397483153177, standard_atol),
("psf_ixx", psf_ixx, 4.253191896391297, 6e-7),
("psf_iyy", psf_iyy, 4.687397483153177, 7e-7),
("psf_ixy", psf_ixy, -0.57911628487574, standard_atol),
("summary.psfSigma", summary.psfSigma, 2.11203591780044, standard_atol),
("summary.psfIxx", summary.psfIxx, 4.272794013403168, standard_atol),
("summary.psfIyy", summary.psfIyy, 4.735316824053334, standard_atol),
("summary.psfIxy", summary.psfIxy, -0.57899030354606, standard_atol),
("summary.psfArea", summary.psfArea, 82.65495879853161, standard_atol),
# TODO: Find a way to tighten psfArea atol in DM-46415.
("summary.psfArea", summary.psfArea, 82.65495879853161, 7e-6),
("summary.ra", summary.ra, 320.75894004802291, standard_atol),
("summary.dec", summary.dec, -0.23498192412129, standard_atol),
("summary.zenithDistance", summary.zenithDistance, 21.04574864469552, standard_atol),
Expand Down

0 comments on commit 1058139

Please sign in to comment.