Skip to content

Commit 1f34a59

Browse files
committed
Reinstate testing all pipelines
1 parent d757885 commit 1f34a59

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test_pipelines.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def swallowLogs() -> Iterator[None]:
6969
"ISR",
7070
"SFM",
7171
"AOS_DANISH",
72+
"AOS_WCS_DANISH",
7273
"AOS_TIE",
7374
"AOS_REFIT_WCS",
7475
"AOS_AI_DONUT",
@@ -123,10 +124,9 @@ def setUp(self) -> None:
123124
self.assertIn(pipelineName, self.pipelines)
124125

125126
# check no unexpected pipelines either so that we're always explicit
126-
# that we're testing all the ones we know about. XXX turn this back on
127-
# for pipelineName in self.pipelines.keys():
128-
# self.assertIn(pipelineName, EXPECTED_PIPELINES,
129-
# f"Unexpected pipeline {pipelineName} found")
127+
# that we're testing all the ones we know about.
128+
for pipelineName in self.pipelines.keys():
129+
self.assertIn(pipelineName, EXPECTED_PIPELINES, f"Unexpected pipeline {pipelineName} found")
130130

131131
where = "exposure.day_obs=20251115 AND exposure.seq_num in (226..228,436) AND instrument='LSSTCam'"
132132
records = self.minimalButler.query_dimension_records("exposure", where=where)

0 commit comments

Comments
 (0)