mirror of
https://github.com/usatiuk/dhfs.git
synced 2025-10-29 04:57:48 +01:00
better tests output
This commit is contained in:
2
.github/workflows/server.yml
vendored
2
.github/workflows/server.yml
vendored
@@ -63,7 +63,7 @@ jobs:
|
|||||||
if: ${{ always() }}
|
if: ${{ always() }}
|
||||||
with:
|
with:
|
||||||
name: Test logs
|
name: Test logs
|
||||||
path: dhfs-parent/**/target/*-reports
|
path: ./**/target/*-reports
|
||||||
|
|
||||||
build-webui:
|
build-webui:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|||||||
@@ -96,7 +96,18 @@
|
|||||||
<plugin>
|
<plugin>
|
||||||
<artifactId>maven-surefire-plugin</artifactId>
|
<artifactId>maven-surefire-plugin</artifactId>
|
||||||
<version>${surefire-plugin.version}</version>
|
<version>${surefire-plugin.version}</version>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>me.fabriciorby</groupId>
|
||||||
|
<artifactId>maven-surefire-junit5-tree-reporter</artifactId>
|
||||||
|
<version>1.3.0</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<reportFormat>plain</reportFormat>
|
||||||
|
<statelessTestsetInfoReporter
|
||||||
|
implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter">
|
||||||
|
</statelessTestsetInfoReporter>
|
||||||
<systemPropertyVariables>
|
<systemPropertyVariables>
|
||||||
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
||||||
<maven.home>${maven.home}</maven.home>
|
<maven.home>${maven.home}</maven.home>
|
||||||
@@ -109,6 +120,7 @@
|
|||||||
--add-exports java.base/jdk.internal.access=ALL-UNNAMED
|
--add-exports java.base/jdk.internal.access=ALL-UNNAMED
|
||||||
</argLine>
|
</argLine>
|
||||||
<skipTests>${skip.unit}</skipTests>
|
<skipTests>${skip.unit}</skipTests>
|
||||||
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
@@ -122,7 +134,18 @@
|
|||||||
</goals>
|
</goals>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
|
<dependencies>
|
||||||
|
<dependency>
|
||||||
|
<groupId>me.fabriciorby</groupId>
|
||||||
|
<artifactId>maven-surefire-junit5-tree-reporter</artifactId>
|
||||||
|
<version>1.3.0</version>
|
||||||
|
</dependency>
|
||||||
|
</dependencies>
|
||||||
<configuration>
|
<configuration>
|
||||||
|
<reportFormat>plain</reportFormat>
|
||||||
|
<statelessTestsetInfoReporter
|
||||||
|
implementation="org.apache.maven.plugin.surefire.extensions.junit5.JUnit5StatelessTestsetInfoTreeReporter">
|
||||||
|
</statelessTestsetInfoReporter>
|
||||||
<systemPropertyVariables>
|
<systemPropertyVariables>
|
||||||
<native.image.path>
|
<native.image.path>
|
||||||
${project.build.directory}/${project.build.finalName}-runner
|
${project.build.directory}/${project.build.finalName}-runner
|
||||||
@@ -130,19 +153,9 @@
|
|||||||
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
|
||||||
<buildDirectory>${project.build.directory}</buildDirectory>
|
<buildDirectory>${project.build.directory}</buildDirectory>
|
||||||
<nativeLibsDirectory>${dhfs.native-libs-dir}</nativeLibsDirectory>
|
<nativeLibsDirectory>${dhfs.native-libs-dir}</nativeLibsDirectory>
|
||||||
<junit.jupiter.execution.parallel.enabled>
|
|
||||||
true
|
|
||||||
</junit.jupiter.execution.parallel.enabled>
|
|
||||||
<junit.jupiter.execution.parallel.mode.default>
|
|
||||||
concurrent
|
|
||||||
</junit.jupiter.execution.parallel.mode.default>
|
|
||||||
<junit.jupiter.execution.parallel.config.dynamic.factor>
|
|
||||||
0.5
|
|
||||||
</junit.jupiter.execution.parallel.config.dynamic.factor>
|
|
||||||
<junit.platform.output.capture.stdout>true</junit.platform.output.capture.stdout>
|
|
||||||
<junit.platform.output.capture.stderr>true</junit.platform.output.capture.stderr>
|
|
||||||
<maven.home>${maven.home}</maven.home>
|
<maven.home>${maven.home}</maven.home>
|
||||||
</systemPropertyVariables>
|
</systemPropertyVariables>
|
||||||
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
|
|||||||
@@ -160,6 +160,25 @@
|
|||||||
<parallel>classes</parallel>
|
<parallel>classes</parallel>
|
||||||
</configuration>
|
</configuration>
|
||||||
</plugin>
|
</plugin>
|
||||||
|
<plugin>
|
||||||
|
<groupId>org.apache.maven.plugins</groupId>
|
||||||
|
<artifactId>maven-failsafe-plugin</artifactId>
|
||||||
|
<configuration>
|
||||||
|
<systemPropertyVariables>
|
||||||
|
<junit.jupiter.execution.parallel.enabled>
|
||||||
|
true
|
||||||
|
</junit.jupiter.execution.parallel.enabled>
|
||||||
|
<junit.jupiter.execution.parallel.mode.default>
|
||||||
|
concurrent
|
||||||
|
</junit.jupiter.execution.parallel.mode.default>
|
||||||
|
<junit.jupiter.execution.parallel.config.dynamic.factor>
|
||||||
|
0.5
|
||||||
|
</junit.jupiter.execution.parallel.config.dynamic.factor>
|
||||||
|
<junit.platform.output.capture.stdout>true</junit.platform.output.capture.stdout>
|
||||||
|
<junit.platform.output.capture.stderr>true</junit.platform.output.capture.stderr>
|
||||||
|
</systemPropertyVariables>
|
||||||
|
</configuration>
|
||||||
|
</plugin>
|
||||||
<plugin>
|
<plugin>
|
||||||
<groupId>${quarkus.platform.group-id}</groupId>
|
<groupId>${quarkus.platform.group-id}</groupId>
|
||||||
<artifactId>quarkus-maven-plugin</artifactId>
|
<artifactId>quarkus-maven-plugin</artifactId>
|
||||||
|
|||||||
Reference in New Issue
Block a user