Skip to content

Commit

Permalink
Updates tests for existence of warps
Browse files Browse the repository at this point in the history
  • Loading branch information
arunkannawadi committed Jan 8, 2025
1 parent 9e86898 commit b07033b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions tests/test_validate_outputs.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,11 +202,22 @@ def test_make_tables(self):
self.check_pipetasks(["makeCcdVisitTable", "makeVisitTable"], 1, 1)
self.check_datasets(["ccdVisitTable", "visitTable"], 1)

# TODO: Remove this test in DM-44612.
def test_make_warp(self):
"""Test existence of warps."""
self.check_pipetasks(["makeWarp"], self._num_visits, self._num_visits)
self.check_datasets(["deepCoadd_directWarp"], self._num_visits)

def test_make_direct_warp(self):
"""Test existence of direct warps."""
self.check_pipetasks(["makeDirectWarp"], self._num_visits, self._num_visits)
self.check_datasets(["deepCoadd_directWarp"], self._num_visits)

def test_make_psfMatched_warp(self):
"""Test existence of PSF-matched warps."""
self.check_pipetasks(["makePsfMatchedWarp"], self._num_visits, self._num_visits)
self.check_datasets(["deepCoadd_psfMatchedWarp"], self._num_visits)

def test_assemble_coadd(self):
"""Test existence of coadds."""

Expand Down

0 comments on commit b07033b

Please sign in to comment.