Skip to content

Commit

Permalink
Added "regression" group to integration tests for use in v3 CI testing
Browse files Browse the repository at this point in the history
  • Loading branch information
EricWittmann committed Dec 4, 2023
1 parent 95e8bcb commit eb9e503
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 0 deletions.
8 changes: 8 additions & 0 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -571,6 +571,14 @@
</properties>
</profile>

<profile>
<id>regression</id>
<properties>
<groups>regression</groups>
<skipTests>false</skipTests>
</properties>
</profile>

<profile>
<id>serdes</id>
<properties>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
import static org.junit.jupiter.api.Assertions.assertNotNull;

@Tag(Constants.SMOKE)
@Tag(Constants.REGRESSION)
@QuarkusIntegrationTest
class ArtifactsIT extends ApicurioRegistryBaseIT {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
import static org.hamcrest.MatcherAssert.assertThat;

@Tag(Constants.SMOKE)
@Tag(Constants.REGRESSION)
@QuarkusIntegrationTest
class MetadataIT extends ApicurioRegistryBaseIT {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
import static org.junit.jupiter.api.Assertions.assertNotNull;

@Tag(Constants.SMOKE)
@Tag(Constants.REGRESSION)
@QuarkusIntegrationTest
class RulesResourceIT extends ApicurioRegistryBaseIT {

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ public interface Constants {
* Tag for tests, which are testing basic functionality
*/
String SMOKE = "smoke";
/**
* Tag for tests, which are used for v3 regression testing (tests using the v2 API against a v3 server)
*/
String REGRESSION = "regression";
/**
* Tag for tests, which are working with the cluster (integration of kafka with registries) such as serdes and converters
*/
Expand Down

0 comments on commit eb9e503

Please sign in to comment.