Skip to content

Commit 5895274

Browse files
authored
[Event Hubs Function Bindings] Ignore Failing Tests (Azure#16716)
The focus of these changes is to ignore the tests that are failing for Live runs consistently until they can be investigated.
1 parent a42b92d commit 5895274

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

sdk/eventhub/Microsoft.Azure.WebJobs.Extensions.EventHubs/tests/EventHubEndToEndTests.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,7 @@ public EventHubEndToEndTests()
3535
}
3636

3737
[Test]
38+
[Ignore("Failing test. Tracked by #16715")]
3839
public async Task EventHub_PocoBinding()
3940
{
4041
var tuple = BuildHost<EventHubTestBindToPocoJobs>();
@@ -53,6 +54,7 @@ public async Task EventHub_PocoBinding()
5354
}
5455

5556
[Test]
57+
[Ignore("Failing test. Tracked by #16715")]
5658
public async Task EventHub_StringBinding()
5759
{
5860
var tuple = BuildHost<EventHubTestBindToStringJobs>();
@@ -71,6 +73,7 @@ public async Task EventHub_StringBinding()
7173
}
7274

7375
[Test]
76+
[Ignore("Failing test. Tracked by #16715")]
7477
public async Task EventHub_SingleDispatch()
7578
{
7679
Tuple<JobHost, IHost> tuple = BuildHost<EventHubTestSingleDispatchJobs>();
@@ -104,6 +107,7 @@ public async Task EventHub_SingleDispatch()
104107
}
105108

106109
[Test]
110+
[Ignore("Failing test. Tracked by #16715")]
107111
public async Task EventHub_MultipleDispatch()
108112
{
109113
Tuple<JobHost, IHost> tuple = BuildHost<EventHubTestMultipleDispatchJobs>();
@@ -140,6 +144,7 @@ public async Task EventHub_MultipleDispatch()
140144
}
141145

142146
[Test]
147+
[Ignore("Failing test. Tracked by #16715")]
143148
public async Task EventHub_PartitionKey()
144149
{
145150
Tuple<JobHost, IHost> tuple = BuildHost<EventHubPartitionKeyTestJobs>();

sdk/eventhub/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ extends:
55
parameters:
66
MaxParallel: 6
77
ServiceDirectory: eventhub
8-
TimeoutInMinutes: 120
8+
TimeoutInMinutes: 150
99
TestCanary: true

0 commit comments

Comments
 (0)