Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions pipelines/LSSTCam/ApPipe-noForced.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,15 @@ description: >-
imports:
- location: $PROMPT_PROCESSING_DIR/pipelines/LSSTCam/ApPipe.yaml
tasks:
# sattle only required in PP environment
calibrateImage:
class: lsst.pipe.tasks.calibrateImage.CalibrateImageTask
config:
run_sattle: True
detectAndMeasureDiaSource:
class: lsst.ip.diffim.detectAndMeasure.DetectAndMeasureTask
config:
run_sattle: True
associateApdb:
class: lsst.ap.association.DiaPipelineTask
config:
Expand Down
9 changes: 9 additions & 0 deletions pipelines/LSSTCam/ApPipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ imports:
include:
- prompt
tasks:
# sattle only required in PP environment
calibrateImage:
class: lsst.pipe.tasks.calibrateImage.CalibrateImageTask
config:
run_sattle: True
detectAndMeasureDiaSource:
class: lsst.ip.diffim.detectAndMeasure.DetectAndMeasureTask
config:
run_sattle: True
associateApdb:
class: lsst.ap.association.DiaPipelineTask
config:
Expand Down
1 change: 1 addition & 0 deletions tests/test_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ class PipelineDefintionsTestSuite(unittest.TestCase):
def setUp(self):
self.path = os.path.join(getPackageDir("prompt_processing"), "pipelines")

@unittest.mock.patch.dict(os.environ, {"SATTLE_URI_BASE": "fake_host:1234"})
def test_graph_build(self):
"""Test that each pipeline definition file can be
used to build a graph.
Expand Down