Skip to content
Snippets Groups Projects
Commit 88201258 authored by Lukas Malte Monnerjahn's avatar Lukas Malte Monnerjahn
Browse files

Merge pull request 'OZG-6753 Exclude XtaClientITCase during verify' (#11) from...

Merge pull request 'OZG-6753 Exclude XtaClientITCase during verify' (#11) from OZG-6753-fix-XtaClientITCase into main

Reviewed-on: https://git.ozg-sh.de/ozgcloud-lib/xta-client-lib/pulls/11


Reviewed-by: default avatarLukas <lukasmalte.monnerjahn@dataport.de>
parents 3e8f343f 0228d7b0
Branches
Tags
No related merge requests found
...@@ -149,17 +149,24 @@ ...@@ -149,17 +149,24 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId> <artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<excludes>
<!--docker environment in der pipeline laeuft noch nicht-->
<exclude>**/XtaClientITCase.java</exclude>
</excludes>
</configuration>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
</execution>
</executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId> <artifactId>maven-surefire-plugin</artifactId>
<configuration>
<includes>
<include>**/*Test.java</include>
<!--docker environment in der pipeline laeuft noch nicht-->
<!--include>**/*ITCase.java</include-->
</includes>
</configuration>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.jacoco</groupId> <groupId>org.jacoco</groupId>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment