diff --git a/tests/test_pipelines.py b/tests/test_pipelines.py index f8dba239..bd436b0a 100644 --- a/tests/test_pipelines.py +++ b/tests/test_pipelines.py @@ -133,11 +133,16 @@ def test_cameras(self): @unittest.skipIf(not has_obs_lsst, reason="Cannot test LATISS pipelines without obs_lsst") def test_latiss_pipelines(self): for pipeline in self._get_pipelines(exclude=[ + # The following two tasks are not part of the new pipelines. + "cpDarkForDefects.yaml", + "cpDefectsIndividual.yaml", + # The following task is not defined for LATISS. "cpMonochromatorScan.yaml", - # TODO DM-46356: Remove following from exclusion list. - "cpBiasBootstrap.yaml", - "cpDarkBootstrap.yaml", - "cpFlatBootstrap.yaml", + # The following tasks will be added in the future. + "cpCrosstalk.yaml", + "cpFringe.yaml", + # TODO: DM-46426 + "cpCti.yaml", ]): self._check_pipeline(os.path.join(self.pipeline_path, "LATISS", pipeline))