From bcfcbd962d992ead69edc3071721b7b3e965d7af Mon Sep 17 00:00:00 2001 From: Maria Pena-Guerrero Date: Tue, 16 Jul 2024 11:06:26 -0400 Subject: [PATCH 1/3] parameter needed in function call --- jwst/regtest/test_miri_image.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jwst/regtest/test_miri_image.py b/jwst/regtest/test_miri_image.py index c8aa65dd67..f7237c3d7f 100644 --- a/jwst/regtest/test_miri_image.py +++ b/jwst/regtest/test_miri_image.py @@ -164,7 +164,7 @@ def test_miri_image3_catalog(run_image3, rtdata_module, diff_astropy_tables): rtdata.output = "jw01024-o001_t002_miri_f770w_cat.ecsv" rtdata.get_truth("truth/test_miri_image_stages/jw01024-o001_t002_miri_f770w_cat.ecsv") - assert diff_astropy_tables(rtdata.output, rtdata.truth, rtol=1e-4) + assert diff_astropy_tables(rtdata.output, rtdata.truth, rtol=1e-3, atol=1e-4) @pytest.mark.bigdata From 136f1d99c61540538793dcde0785a6e99fe0e287 Mon Sep 17 00:00:00 2001 From: Maria Pena-Guerrero Date: Tue, 16 Jul 2024 11:11:55 -0400 Subject: [PATCH 2/3] added PR number --- CHANGES.rst | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGES.rst b/CHANGES.rst index 256562695e..ae3ab2d61f 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -19,6 +19,12 @@ outlier_detection - Fixed failures due to a missing ``wcs.array_shape`` attribute when the ``outlier_detection`` step was run standalone using e.g. ``strun`` [#8645] +regtest +------- + +- An missing parameter in the function call was preventing the tolerance + to be updated in test_miri_image3_catalog. [#8653] + stpipe ------ From 2f4410fe8d8636b674ff13f8eb4284997329cba4 Mon Sep 17 00:00:00 2001 From: Maria Date: Tue, 23 Jul 2024 15:59:34 -0400 Subject: [PATCH 3/3] Update CHANGES.rst removed comment since it does not affect behavior. --- CHANGES.rst | 6 ------ 1 file changed, 6 deletions(-) diff --git a/CHANGES.rst b/CHANGES.rst index d1ae7d9548..c581f1cb4c 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -26,12 +26,6 @@ outlier_detection - Fixed failures due to a missing ``wcs.array_shape`` attribute when the ``outlier_detection`` step was run standalone using e.g. ``strun`` [#8645] -regtest -------- - -- An missing parameter in the function call was preventing the tolerance - to be updated in test_miri_image3_catalog. [#8653] - stpipe ------