Skip to content

Commit cb3f75d

Browse files
jsquireCopilot
andauthored
[Functions: Storage] Marking flaky tests as ignore (Azure#51942)
* [Functions: Storage] Marking flaky tests as ignore The focus of these changes is to mark a set of tests in the Storage Functions extensions project as ignore until they can be stabilized. * Update sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues/tests/BinderTests.cs Co-authored-by: Copilot <[email protected]> --------- Co-authored-by: Copilot <[email protected]>
1 parent a5e4e1d commit cb3f75d

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues/tests/BinderTests.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ public void SetUp()
2424
}
2525

2626
[Test]
27+
[Ignore("Flaky test, see:#51941")]
2728
public async Task Trigger_ViaIBinder_CannotBind()
2829
{
2930
// Arrange

sdk/storage/Microsoft.Azure.WebJobs.Extensions.Storage.Queues/tests/QueueTriggerTests.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ private async Task TestBindToParameterBindingData(string expectedContent)
127127
}
128128

129129
[Test]
130+
[Ignore("Flaky test, see:#51941")]
130131
public async Task QueueTrigger_IfBoundToStringAndMessageIsNotUtf8ByteArray_DoesNotBind()
131132
{
132133
// Arrange
@@ -260,6 +261,7 @@ private static void AssertEqual(Poco expected, Poco actual)
260261
}
261262

262263
[Test]
264+
[Ignore("Flaky test, see:#51941")]
263265
public async Task QueueTrigger_IfBoundToPocoAndMessageIsNotJson_DoesNotBind()
264266
{
265267
// Arrange
@@ -286,6 +288,7 @@ public async Task QueueTrigger_IfBoundToPocoAndMessageIsNotJson_DoesNotBind()
286288
}
287289

288290
[Test]
291+
[Ignore("Flaky test, see:#51941")]
289292
public async Task QueueTrigger_IfBoundToPocoAndMessageIsIncompatibleJson_DoesNotBind()
290293
{
291294
// Arrange
@@ -362,6 +365,7 @@ public async Task QueueTrigger_IfMessageIsUtf8ByteArray_ProvidesQueueTriggerBind
362365
}
363366

364367
[Test]
368+
[Ignore("Flaky test, see:#51941")]
365369
public async Task QueueTrigger_IfMessageIsNonUtf8ByteArray_DoesNotProvideQueueTriggerBindingData()
366370
{
367371
// Arrange

0 commit comments

Comments
 (0)