runTestQuantum¶
- 
lsst.pipe.base.testUtils.runTestQuantum(task, butler, quantum, mockRun=True)¶
- Run a PipelineTask on a Quantum. - Parameters: - task : lsst.pipe.base.PipelineTask
- The task to run on the quantum. 
- butler : lsst.daf.butler.Butler
- The collection to run on. 
- quantum : lsst.daf.butler.Quantum
- The quantum to run. 
- mockRun : bool
- Whether or not to replace - task’s- runmethod. The default of- Trueis recommended unless- runneeds to do real work (e.g., because the test needs real output datasets).
 - Returns: - run : unittest.mock.MockorNone
- If - mockRunis set, the mock that replaced- run. This object can be queried for the arguments- runQuantumpassed to- run.
 
- task :