mirror of
https://github.com/kochetkov-ma/allure-server.git
synced 2024-11-21 16:46:43 +02:00
0d7342b9f2
* add: delete old format support add: fix build add: new plugin system add: spring boot 3, update allure, update all libs version, update vaadin, update gradle, update nodejs * add: fix test * add: fix test * add: fix test * add: fix test * add: fix docker image platforms * add: fix docker image platforms * add: enabled/disabled plugins
19 lines
377 B
Groovy
19 lines
377 B
Groovy
////// junit //////
|
|
test {
|
|
useJUnitPlatform()
|
|
|
|
minHeapSize = "256m"
|
|
maxHeapSize = "2G"
|
|
// reports {
|
|
// junitXml.enabled = true
|
|
// html.enabled = true
|
|
// }
|
|
testLogging {
|
|
showCauses true
|
|
showStackTraces true
|
|
showExceptions true
|
|
/* events "started", "skipped", "failed" */
|
|
exceptionFormat "full"
|
|
}
|
|
}
|