summaryrefslogtreecommitdiff
path: root/simulator
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-03-20 15:58:41 +0100
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-03-20 16:33:01 +0100
commit05331ae9927d487ed89733dcb32cb883a0b6bedf (patch)
tree42740345293f57cfc139cb733f0e5cb2e1abfeb3 /simulator
parent802b1211b8cf5c2f7fbcd251f2544761ed95c38a (diff)
ci: Generate test reports for CI builds
This change updates the Github Actions workflow configuration to generate test reports for the simulator CI builds.
Diffstat (limited to 'simulator')
-rw-r--r--simulator/buildSrc/src/main/kotlin/testing-conventions.gradle.kts9
1 files changed, 5 insertions, 4 deletions
diff --git a/simulator/buildSrc/src/main/kotlin/testing-conventions.gradle.kts b/simulator/buildSrc/src/main/kotlin/testing-conventions.gradle.kts
index 566b765f..f129c282 100644
--- a/simulator/buildSrc/src/main/kotlin/testing-conventions.gradle.kts
+++ b/simulator/buildSrc/src/main/kotlin/testing-conventions.gradle.kts
@@ -1,7 +1,3 @@
-import org.gradle.kotlin.dsl.`java-library`
-import org.gradle.kotlin.dsl.kotlin
-import org.gradle.platform.base.Library
-
/*
* Copyright (c) 2021 AtLarge Research
*
@@ -30,6 +26,11 @@ plugins {
tasks.test {
useJUnitPlatform()
+
+ reports {
+ html.isEnabled = true
+ junitXml.isEnabled = true
+ }
}
dependencies {