Skip to content

Commit

Permalink
Merge branch 'tickets/DM-32819'
Browse files Browse the repository at this point in the history
  • Loading branch information
plazas committed May 3, 2022
2 parents 0cc44f7 + 3beff93 commit b3a3e6d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions python/lsst/cp/verify/mergeResults.py
Original file line number Diff line number Diff line change
Expand Up @@ -146,9 +146,11 @@ def run(self, inputStats, camera, inputDims):
success = False
# See if the detector failed
if 'DET' in detStats['VERIFY']:
for testName, testResult in detStats['VERIFY']['DET'].items():
if testResult is False:
calcStats['FAILURES'].append(testName)
detSuccess = detStats['VERIFY']['DET'].pop('SUCCESS', False)
if not detSuccess:
for testName, testResult in detStats['VERIFY']['DET'].items():
if testResult is False:
calcStats['FAILURES'].append(testName)
# See if the catalog failed
if 'CATALOG' in detStats['VERIFY']:
for testName, testResult in detStats['VERIFY']['CATALOG'].items():
Expand Down

0 comments on commit b3a3e6d

Please sign in to comment.