Skip to content

Commit

Permalink
ci(test): split atomix integration and unit tests
Browse files Browse the repository at this point in the history
(cherry picked from commit 79e95f1)
  • Loading branch information
megglos authored and github-actions[bot] committed Apr 14, 2023
1 parent 64fa2e0 commit e3576b6
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import org.junit.runners.Parameterized.Parameters;

@RunWith(Parameterized.class)
public class RaftFailOverTest {
public class RaftFailOverIT {

@Rule @Parameter public RaftRule raftRule;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
import org.junit.runners.Parameterized.Parameters;

@RunWith(Parameterized.class)
public class ZeebeTest {
public class ZeebeIT {

// rough estimate of how many entries we'd need to write to fill a segment
// segments are configured for 1kb, and one entry takes ~30 bytes (plus some metadata I guess)
Expand Down
12 changes: 12 additions & 0 deletions atomix/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,18 @@
<suppressionsLocation>src/main/resources/suppression.xml</suppressionsLocation>
</configuration>
</plugin>

<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<includes>
<include>**/IT*.java</include>
<include>**/*IT.java</include>
<include>**/*ITCase.java</include>
</includes>
</configuration>
</plugin>
</plugins>
</build>
</project>

0 comments on commit e3576b6

Please sign in to comment.