Add strict timeout for test execution (#2598)

This commit is contained in:
Rafal Blaczkowski 2020-10-09 12:08:50 +02:00 committed by GitHub
parent ba931c2d21
commit 44c2477b78
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,6 +102,9 @@ pipeline {
}
}
stage("Run tests") {
options {
timeout(time: 15, unit: 'MINUTES')
}
steps{
runTests()
}