Skip to content

Commit

Permalink
Update LATISS pipeline building tests.
Browse files Browse the repository at this point in the history
  • Loading branch information
erykoff committed Sep 23, 2024
1 parent 7ac16a7 commit fd04701
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions tests/test_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit fd04701

Please sign in to comment.