Tentatively try to improve error logging on the CI

This commit is contained in:
Sébastien Deleuze
2023-08-07 15:29:07 +02:00
parent 9d92ee61fc
commit aad48bde30

View File

@@ -268,6 +268,7 @@ public class CrSmokeTestPlugin implements Plugin<Project> {
TaskProvider<AppTest> appTestTask = project.getTasks().register(taskName, AppTest.class, (task) -> {
task.dependsOn(startTask);
task.useJUnitPlatform();
task.getTestLogging().setShowStandardStreams(true);
task.setTestClassesDirs(source.getOutput().getClassesDirs());
task.setClasspath(source.getRuntimeClasspath());
task.getInputs()