Skip to content

Commit

Permalink
Update test_pipelines unit testing for new format
Browse files Browse the repository at this point in the history
  • Loading branch information
leeskelvin committed Sep 24, 2024
1 parent af9b1eb commit ac82b95
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions tests/test_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,10 @@ def makeButler(self, **kwargs: Any) -> Butler:
DatastoreMock.apply(butler)
return butler

def test_decam_drp_merian(self):
def test_decam_isrForCrosstalkSources(self):
butler = self.makeButler(writeable=True)
tester0 = PipelineStepTester(
os.path.join(PIPELINES_DIR, "DECam", "DRP-Merian.yaml"),
tester = PipelineStepTester(
os.path.join(PIPELINES_DIR, "DECam", "isrForCrosstalkSources.yaml"),
["#step0"],
[
("ps1_pv3_3pi_20170110", {"htm7"}, "SimpleCatalog", False),
Expand All @@ -246,7 +246,10 @@ def test_decam_drp_merian(self):
},
expected_outputs={"overscanRaw"},
)
tester0.run(butler, self)
tester.run(butler, self)

def test_decam_drp_merian(self):
butler = self.makeButler(writeable=True)
tester = PipelineStepTester(
os.path.join(PIPELINES_DIR, "DECam", "DRP-Merian.yaml"),
[
Expand Down

0 comments on commit ac82b95

Please sign in to comment.