Skip to content

Commit e2edafc

Browse files
committed
remove accelerate config from ControlPlaneOperationRegressionTesting
remove bundle from dependencies to reduce build time
1 parent d399f04 commit e2edafc

2 files changed

Lines changed: 0 additions & 14 deletions

File tree

test/s3-tests/pom.xml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -179,12 +179,6 @@
179179
<artifactId>test-utils</artifactId>
180180
<scope>test</scope>
181181
</dependency>
182-
<dependency>
183-
<groupId>software.amazon.awssdk</groupId>
184-
<artifactId>bundle-sdk</artifactId>
185-
<version>${project.version}</version>
186-
<scope>test</scope>
187-
</dependency>
188182
</dependencies>
189183

190184
<build>

test/s3-tests/src/it/java/software/amazon/awssdk/services/s3/regression/ControlPlaneOperationRegressionTesting.java

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@
1515

1616
package software.amazon.awssdk.services.s3.regression;
1717

18-
import static software.amazon.awssdk.services.s3.regression.S3ChecksumsTestUtils.assumeNotAccelerateWithArnType;
19-
import static software.amazon.awssdk.services.s3.regression.S3ChecksumsTestUtils.assumeNotAccelerateWithEoz;
20-
import static software.amazon.awssdk.services.s3.regression.S3ChecksumsTestUtils.assumeNotAccelerateWithPathStyle;
2118
import static software.amazon.awssdk.services.s3.regression.S3ChecksumsTestUtils.assumeNotAccessPointWithPathStyle;
2219
import static software.amazon.awssdk.services.s3.regression.S3ChecksumsTestUtils.makeAsyncClient;
2320
import static software.amazon.awssdk.services.s3.regression.S3ChecksumsTestUtils.makeSyncClient;
@@ -50,9 +47,6 @@ public class ControlPlaneOperationRegressionTesting extends BaseS3RegressionTest
5047
@MethodSource("testConfigs")
5148
void deleteObject(TestConfig config) throws Exception {
5249
assumeNotAccessPointWithPathStyle(config);
53-
assumeNotAccelerateWithPathStyle(config);
54-
assumeNotAccelerateWithArnType(config);
55-
assumeNotAccelerateWithEoz(config);
5650

5751
LOG.debug(() -> "Running deleteObject with config: " + config.toString());
5852

@@ -83,8 +77,6 @@ void deleteObject(TestConfig config) throws Exception {
8377
@MethodSource("testConfigs")
8478
void restoreObject(TestConfig config) throws Exception {
8579
assumeNotAccessPointWithPathStyle(config);
86-
assumeNotAccelerateWithPathStyle(config);
87-
assumeNotAccelerateWithArnType(config);
8880

8981
Assumptions.assumeFalse(config.getBucketType() == BucketType.EOZ,
9082
"Restore is not supported for S3 Express");

0 commit comments

Comments
 (0)