Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit c826a16

Browse files
committed
Disable tests that seem to be breaking nunit on CI
1 parent 1f14fe9 commit c826a16

File tree

1 file changed

+8
-9
lines changed
  • src/tests/TaskSystemIntegrationTests

1 file changed

+8
-9
lines changed

src/tests/TaskSystemIntegrationTests/Tests.cs

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -573,8 +573,8 @@ public async Task ExceptionPropagatesOutIfNoFinally()
573573
await task.StartAsAsync();
574574
}
575575

576-
[Test]
577-
[Ignore("borked")]
576+
//[Test]
577+
//[Ignore("borked")]
578578
[ExpectedException(typeof(InvalidOperationException))]
579579
public async Task DeferExceptions()
580580
{
@@ -670,8 +670,8 @@ public async Task CanWrapATask()
670670
/// <summary>
671671
/// Always call Then or another non-Defer variant after calling Defer
672672
/// </summary>
673-
[Test]
674-
[Ignore("borked")]
673+
//[Test]
674+
//[Ignore("borked")]
675675
public async Task AlwaysChainAsyncBodiesWithNonAsync()
676676
{
677677
var runOrder = new List<int>();
@@ -713,8 +713,8 @@ public async Task AlwaysChainAsyncBodiesWithNonAsync()
713713
/// <summary>
714714
/// Always call Then or another non-Defer variant after calling Defer
715715
/// </summary>
716-
[Test]
717-
[Ignore("borked")]
716+
//[Test]
717+
//[Ignore("borked")]
718718
public async Task TwoDefersInARowWillNotWork()
719719
{
720720
var runOrder = new List<int>();
@@ -727,8 +727,8 @@ public async Task TwoDefersInARowWillNotWork()
727727
Assert.IsNull(ret);
728728
}
729729

730-
[Test]
731-
[Ignore("borked")]
730+
//[Test]
731+
//[Ignore("borked")]
732732
public async Task DoNotEndChainsWithDefer()
733733
{
734734
var runOrder = new List<int>();
@@ -832,7 +832,6 @@ public void GetTopMostTaskInCreatedState()
832832
Assert.AreSame(task2, top);
833833
}
834834

835-
836835
[Test]
837836
public void GetTopMostTask()
838837
{

0 commit comments

Comments
 (0)