Skip to content

Commit

Permalink
Exclude fix
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel Kec <[email protected]>
  • Loading branch information
danielkec committed Dec 16, 2024
1 parent 7f1ea0f commit 39fb2ca
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
22 changes: 18 additions & 4 deletions microprofile/tests/testing/testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
limitations under the License.
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.helidon.microprofile.tests.testing</groupId>
Expand All @@ -28,8 +28,7 @@
<name>Helidon Microprofile Tests TestNG unit tests</name>

<description>
Test for TestNG integration to prevent cyclic dependencies,
so the module can be used in MP config implementation
Test for TestNG integration to prevent cyclic dependencies, so the module can be used in MP config implementation
</description>

<dependencies>
Expand Down Expand Up @@ -64,4 +63,19 @@
<scope>test</scope>
</dependency>
</dependencies>

<build>

<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<suiteXmlFiles>
<suiteXmlFile>test-suite.xml</suiteXmlFile>
</suiteXmlFiles>
</configuration>
</plugin>
</plugins>
</build>
</project>
2 changes: 1 addition & 1 deletion microprofile/tests/testing/testng/test-suite.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<suite name="testNG-tests" verbose="10" configfailurepolicy="continue">
<test name="testNG-integration-tests">
<packages>
<package name="io.helidon.microprofile.testing.testng">
<package name="io.helidon.microprofile.tests.testing.testng">
<!-- Test executed programmatically by TestPinnedThread -->
<exclude name="io.helidon.microprofile.testing.testng.programmatic"/>
</package>
Expand Down

0 comments on commit 39fb2ca

Please sign in to comment.