diff --git a/bin/pipeline.sh b/bin/pipeline.sh index 84a7797..1a92c8d 100755 --- a/bin/pipeline.sh +++ b/bin/pipeline.sh @@ -61,7 +61,7 @@ pipetask --long-log --log-level="$loglevel" qgraph \ --input "$INPUTCOLL" --output "$COLLECTION" \ -p "$DRP_PIPE_DIR/pipelines/HSC/DRP-ci_hsc.yaml" \ -c calibrateImage:astrometry.maxMeanDistanceArcsec=0.20 \ - -c makeWarp:select.maxPsfTraceRadiusDelta=0.2 \ + -c makeDirectWarp:select.maxPsfTraceRadiusDelta=0.2 \ --save-qgraph "$QGRAPH_FILE" pipetask --long-log --log-level="$loglevel" run \ diff --git a/tests/test_validate_outputs.py b/tests/test_validate_outputs.py index 365192b..c24254b 100644 --- a/tests/test_validate_outputs.py +++ b/tests/test_validate_outputs.py @@ -202,11 +202,16 @@ def test_make_tables(self): self.check_pipetasks(["makeCcdVisitTable", "makeVisitTable"], 1, 1) self.check_datasets(["ccdVisitTable", "visitTable"], 1) - def test_make_warp(self): - """Test existence of warps.""" - self.check_pipetasks(["makeWarp"], self._num_visits, 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."""