Threshold was wrong

I also removed the delta value check. It's going to be weird with the
number of runs we do, and it's also set to run on failures.
This commit is contained in:
William Giokas 2018-07-26 13:19:07 -06:00 committed by rallytime
parent d4ca0e3a97
commit 682a05bebe
No known key found for this signature in database
GPG key ID: E8F1A4B90D0DEA19

View file

@ -49,7 +49,9 @@ pipeline {
parserName: 'PyLint',
pattern: 'pylint-report*.xml'
]],
failedTotalAll: '1',
failedTotalAll: '0',
useDeltaValues: false,
canRunOnFailed: true,
usePreviousBuildAsReference: true
])
cleanWs()