Skip to content

Commit 8dd582b

Browse files
skip flaky test on netcoreapp3.1
1 parent c15ff7e commit 8dd582b

File tree

1 file changed

+5
-0
lines changed
  • test/EventStore.ClientAPIAcceptanceTests

1 file changed

+5
-0
lines changed

test/EventStore.ClientAPIAcceptanceTests/connect.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,12 @@ public async Task can_connect_to_ip_endpoint_with_connection_string() {
134134
Assert.True(writeResult.LogPosition.PreparePosition > 0);
135135
}
136136

137+
#if NETCOREAPP3_1
138+
[Fact(Skip = "Skip on netcoreapp3.1 due to test instability")]
139+
#else
137140
[Fact]
141+
#endif
142+
138143
public async Task can_reconnect_and_retry() {
139144
var streamName = GetStreamName();
140145
var disconnectedSource = new TaskCompletionSource<bool>();

0 commit comments

Comments
 (0)