Skip to content

Commit eb5e1e0

Browse files
authored
Disable s3 filter test (#4262)
There have been some changes to our AWS test environment that are causing this test to fail. This PR disables the test until the environment stabilizes and we decide on a path forward.
1 parent d7e0ebb commit eb5e1e0

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

pkg/sources/s3/s3_test.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@ func TestSource_Chunks(t *testing.T) {
9797
}
9898
for _, tt := range tests {
9999
t.Run(tt.name, func(t *testing.T) {
100+
if tt.name == "gets chunks after assuming role" {
101+
t.Skip("skipping until our test environment stabilizes enough that we know how we're going to handle this")
102+
}
103+
100104
ctx, cancel := context.WithTimeout(context.Background(), time.Second*30)
101105
defer cancel()
102106

0 commit comments

Comments
 (0)