Add test exclusion property handling to jakarta module

This commit is contained in:
Christian Beikov 2021-11-09 13:41:41 +01:00
parent 2e1f7b5d89
commit e5a78f0ee5

View File

@ -279,6 +279,12 @@ test {
}
maxHeapSize = '3G'
// Allow to exclude specific tests
if (project.hasProperty('excludeTests')) {
filter {
excludeTestsMatching project.property('excludeTests').toString()
}
}
}