Skip to content

Commit 63cf81b

Browse files
committed
[DRAFT] fix region-less test
1 parent 25afb2d commit 63cf81b

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/s3-integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
region_name: eu-central-1
106106
stack_name: s3cli-private-bucket
107107
s3_endpoint_host: https://s3.eu-central-1.amazonaws.com
108-
label_filter: 'aws && static && general'
108+
label_filter: 'aws && static && general && !requires-default-region'
109109
use_esc_credentials: false
110110
- name: European Sovereign Cloud
111111
region_name: eusc-de-east-1

s3/integration/general_aws_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,8 @@ var _ = Describe("General testing for all AWS regions", Label("aws", "static", "
3333
BucketName: bucketName,
3434
Region: region,
3535
}),
36-
Entry("with host and without region", &config.S3Cli{
36+
// This case relies on default-region behavior and is excluded from regional endpoint jobs.
37+
Entry("with host and without region", Label("requires-default-region"), &config.S3Cli{
3738
AccessKeyID: accessKeyID,
3839
SecretAccessKey: secretAccessKey,
3940
BucketName: bucketName,

0 commit comments

Comments
 (0)