Skip to content

Commit

Permalink
Remove old args check on publishIntegTestResults
Browse files Browse the repository at this point in the history
Signed-off-by: Peter Zhu <[email protected]>
  • Loading branch information
peterzhuamazon committed Aug 21, 2024
1 parent ef71e44 commit d8e68ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vars/publishIntegTestResults.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ void call(Map args = [:]) {
def isNullOrEmpty = { str ->
str == null || (str instanceof String && str.trim().isEmpty())
}
if (isNullOrEmpty(args.distributionBuildUrl) || isNullOrEmpty(args.testReportManifestYml) || isNullOrEmpty(args.jobName)) {
if (isNullOrEmpty(args.distributionBuildUrl) || isNullOrEmpty(args.testReportManifestYml) || isNullOrEmpty(args.jobName) || args.skipTest.equals('True')) {
return null
}

Expand Down

0 comments on commit d8e68ef

Please sign in to comment.