From fd047015db24e67ea8a0b6992421814f966089d5 Mon Sep 17 00:00:00 2001 From: Eli Rykoff Date: Tue, 17 Sep 2024 17:41:12 -0700 Subject: [PATCH] Update LATISS pipeline building tests. --- tests/test_pipelines.py | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/tests/test_pipelines.py b/tests/test_pipelines.py index 9c3d8b3..fcfdf39 100644 --- a/tests/test_pipelines.py +++ b/tests/test_pipelines.py @@ -130,8 +130,15 @@ def test_cameras(self): @unittest.skipIf(not has_obs_lsst, reason="Cannot test LATISS pipelines without obs_lsst") def test_latiss_pipelines(self): - # TODO DM-46356: Change exclusion to verifyGain.yaml - for pipeline in self._get_pipelines(exclude=["verifyGainFromFlatPairs.yaml"]): + for pipeline in self._get_pipelines(exclude=[ + # The old pipeline name should be excluded. + "verifyGain.yaml", + # The following tasks are not part of the new pipelines. + "verifyDefectsIndividual.yaml", + # The following tasks will be added in the future. + "verifyCrosstalk.yaml", + "verifyBfk.yaml", + ]): self._check_pipeline(os.path.join(self.pipeline_path, "LATISS", pipeline)) @unittest.skipIf(not has_obs_lsst, reason="Cannot test LSSTCam pipelines without obs_lsst")