Skip to content

Commit 9702fa9

Browse files
committed
4.x: Enable microprofile/tests/tck/tck-config/src/test/tck-suite.xml tests helidon-io#8173
Signed-off-by: Jorge Bescos Gascon <[email protected]>
1 parent ab281df commit 9702fa9

File tree

2 files changed

+21
-6
lines changed

2 files changed

+21
-6
lines changed

microprofile/tests/server/pom.xml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,25 @@
7171
<scope>test</scope>
7272
</dependency>
7373
</dependencies>
74+
<build>
75+
<plugins>
76+
<!--
77+
Override plugin to be executed every test in a new JVM.
78+
This is required because there are some system property set.
79+
-->
80+
<plugin>
81+
<groupId>org.apache.maven.plugins</groupId>
82+
<artifactId>maven-surefire-plugin</artifactId>
83+
<configuration>
84+
<forkCount>1</forkCount>
85+
<reuseForks>false</reuseForks>
86+
<useModulePath>false</useModulePath>
87+
<trimStackTrace>false</trimStackTrace>
88+
<!-- DO NOT override argLine instead use surefire.argLine -->
89+
<argLine>${surefire.argLine} ${surefire.coverage.argline}</argLine>
90+
<redirectTestOutputToFile>true</redirectTestOutputToFile>
91+
</configuration>
92+
</plugin>
93+
</plugins>
94+
</build>
7495
</project>

microprofile/tests/tck/tck-config/src/test/tck-suite.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,6 @@
2222
<test name="microprofile-config TCK">
2323
<packages>
2424
<package name="org.eclipse.microprofile.config.tck.*">
25-
<!--
26-
Currently failing because requires this PR:
27-
https://github.com/eclipse/microprofile-config/pull/743
28-
Ignoring meanwhile microprofile-config 3.1 is not released
29-
-->
30-
<exclude name="org.eclipse.microprofile.config.tck.broken"></exclude>
3125
</package>
3226
</packages>
3327
</test>

0 commit comments

Comments
 (0)