Skip to content

Commit 4a7d7e6

Browse files
committed
build: ignore tests for this release
1 parent 12c0225 commit 4a7d7e6

File tree

8 files changed

+16
-0
lines changed

8 files changed

+16
-0
lines changed

extensions/control-plane/store/asset-index-cosmos/src/test/java/org/eclipse/edc/connector/store/azure/cosmos/assetindex/CosmosAssetIndexTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,14 @@
2929
import org.junit.jupiter.api.AfterAll;
3030
import org.junit.jupiter.api.BeforeAll;
3131
import org.junit.jupiter.api.BeforeEach;
32+
import org.junit.jupiter.api.Disabled;
3233
import org.junit.jupiter.api.extension.ExtendWith;
3334

3435
import static org.eclipse.edc.azure.testfixtures.CosmosPostgresTestExtension.DEFAULT_DATASOURCE_NAME;
3536
import static org.eclipse.edc.junit.testfixtures.TestUtils.getResourceFileContentAsString;
3637

3738
@ParallelPostgresCosmosTest
39+
@Disabled("only for release 0.13.2")
3840
@ExtendWith(CosmosPostgresTestExtension.class)
3941
public class CosmosAssetIndexTest extends AssetIndexTestBase {
4042
private static final BaseSqlDialectStatements SQL_STATEMENTS = new PostgresDialectStatements();

extensions/control-plane/store/contract-definition-store-cosmos/src/test/java/org/eclipse/edc/connector/store/azure/cosmos/contractdefinition/CosmosContractDefinitionStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,14 @@
3030
import org.junit.jupiter.api.AfterAll;
3131
import org.junit.jupiter.api.BeforeAll;
3232
import org.junit.jupiter.api.BeforeEach;
33+
import org.junit.jupiter.api.Disabled;
3334
import org.junit.jupiter.api.extension.ExtendWith;
3435

3536
import static org.eclipse.edc.azure.testfixtures.CosmosPostgresTestExtension.DEFAULT_DATASOURCE_NAME;
3637
import static org.eclipse.edc.junit.testfixtures.TestUtils.getResourceFileContentAsString;
3738

3839
@ParallelPostgresCosmosTest
40+
@Disabled("only for release 0.13.2")
3941
@ExtendWith(CosmosPostgresTestExtension.class)
4042
class CosmosContractDefinitionStoreTest extends ContractDefinitionStoreTestBase {
4143

extensions/control-plane/store/contract-negotiation-store-cosmos/src/test/java/org/eclipse/edc/connector/store/azure/cosmos/contractnegotiation/CosmosContractNegotiationStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
import org.junit.jupiter.api.AfterAll;
3131
import org.junit.jupiter.api.BeforeAll;
3232
import org.junit.jupiter.api.BeforeEach;
33+
import org.junit.jupiter.api.Disabled;
3334
import org.junit.jupiter.api.extension.ExtendWith;
3435

3536
import java.sql.SQLException;
@@ -44,6 +45,7 @@
4445
* query operators.
4546
*/
4647
@PostgresCosmosTest
48+
@Disabled("only for release 0.13.2")
4749
@ExtendWith(CosmosPostgresTestExtension.class)
4850
class CosmosContractNegotiationStoreTest extends ContractNegotiationStoreTestBase {
4951
private static final BaseSqlDialectStatements STATEMENTS = new PostgresDialectStatements();

extensions/control-plane/store/policy-definition-store-cosmos/src/test/java/org/eclipse/edc/connector/store/azure/cosmos/policydefinition/CosmosPolicyDefinitionStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@
2727
import org.junit.jupiter.api.AfterAll;
2828
import org.junit.jupiter.api.BeforeAll;
2929
import org.junit.jupiter.api.BeforeEach;
30+
import org.junit.jupiter.api.Disabled;
3031
import org.junit.jupiter.api.extension.ExtendWith;
3132

3233
import static org.eclipse.edc.azure.testfixtures.CosmosPostgresTestExtension.DEFAULT_DATASOURCE_NAME;
3334
import static org.eclipse.edc.junit.testfixtures.TestUtils.getResourceFileContentAsString;
3435

3536
@ParallelPostgresCosmosTest
37+
@Disabled("only for release 0.13.2")
3638
@ExtendWith(CosmosPostgresTestExtension.class)
3739
class CosmosPolicyDefinitionStoreTest extends PolicyDefinitionStoreTestBase {
3840

extensions/control-plane/store/transfer-process-store-cosmos/src/test/java/org/eclipse/edc/connector/store/azure/cosmos/transferprocess/CosmosTransferProcessStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
import org.junit.jupiter.api.AfterAll;
3030
import org.junit.jupiter.api.BeforeAll;
3131
import org.junit.jupiter.api.BeforeEach;
32+
import org.junit.jupiter.api.Disabled;
3233
import org.junit.jupiter.api.extension.ExtendWith;
3334

3435
import java.sql.SQLException;
@@ -39,6 +40,7 @@
3940
import static org.eclipse.edc.junit.testfixtures.TestUtils.getResourceFileContentAsString;
4041

4142
@PostgresCosmosTest
43+
@Disabled("only for release 0.13.2")
4244
@ExtendWith(CosmosPostgresTestExtension.class)
4345
class CosmosTransferProcessStoreTest extends TransferProcessStoreTestBase {
4446

extensions/data-plane-selector/data-plane-instance-store-cosmos/src/test/java/org/eclipse/edc/connector/dataplane/selector/store/cosmos/CosmosDataPlaneInstanceStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import org.junit.jupiter.api.AfterAll;
3232
import org.junit.jupiter.api.BeforeAll;
3333
import org.junit.jupiter.api.BeforeEach;
34+
import org.junit.jupiter.api.Disabled;
3435
import org.junit.jupiter.api.extension.ExtendWith;
3536

3637
import java.sql.SQLException;
@@ -42,6 +43,7 @@
4243
import static org.eclipse.edc.junit.testfixtures.TestUtils.getResourceFileContentAsString;
4344

4445
@ParallelPostgresCosmosTest
46+
@Disabled("only for release 0.13.2")
4547
@ExtendWith(CosmosPostgresTestExtension.class)
4648
public class CosmosDataPlaneInstanceStoreTest extends DataPlaneInstanceStoreTestBase {
4749
private static final DataPlaneInstanceStatements STATEMENTS = new PostgresDataPlaneInstanceStatements();

extensions/data-plane/store/data-plane-store-cosmos/src/test/java/org/eclipse/edc/connector/dataplane/store/cosmos/CosmosDataPlaneStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@
3737
import org.junit.jupiter.api.AfterAll;
3838
import org.junit.jupiter.api.BeforeAll;
3939
import org.junit.jupiter.api.BeforeEach;
40+
import org.junit.jupiter.api.Disabled;
4041
import org.junit.jupiter.api.Nested;
4142
import org.junit.jupiter.api.Test;
4243
import org.junit.jupiter.api.extension.ExtendWith;
@@ -63,6 +64,7 @@
6364
* are set hard coded to 500 ms, which is too short for Postgres@CosmosDB. Unfortunately there also is no way to override a nested test class.
6465
*/
6566
@ParallelPostgresCosmosTest
67+
@Disabled("only for release 0.13.2")
6668
@ExtendWith(CosmosPostgresTestExtension.class)
6769
public class CosmosDataPlaneStoreTest /* extends DataPlaneStoreTestBase */ {
6870
private static final String CONNECTOR_NAME = "test-connector";

extensions/identity-hub/identity-hub-store-cosmos/src/test/java/org/eclipse/edc/identityhub/store/cosmos/CosmosIdentityHubStoreTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,14 @@
2727
import org.junit.jupiter.api.AfterAll;
2828
import org.junit.jupiter.api.BeforeAll;
2929
import org.junit.jupiter.api.BeforeEach;
30+
import org.junit.jupiter.api.Disabled;
3031
import org.junit.jupiter.api.extension.ExtendWith;
3132

3233
import static org.eclipse.edc.azure.testfixtures.CosmosPostgresTestExtension.DEFAULT_DATASOURCE_NAME;
3334
import static org.eclipse.edc.junit.testfixtures.TestUtils.getResourceFileContentAsString;
3435

3536
@ParallelPostgresCosmosTest
37+
@Disabled("only for release 0.13.2")
3638
@ExtendWith(CosmosPostgresTestExtension.class)
3739
public class CosmosIdentityHubStoreTest extends IdentityHubStoreTestBase {
3840
public static final BaseSqlIdentityHubStatements STATEMENTS = new BaseSqlIdentityHubStatements();

0 commit comments

Comments
 (0)