Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ on:
- release/*
tags: [ '*' ]
pull_request:
branches:
- main
- release/*
- dotnet-vnext
workflow_dispatch:

env:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/code-ql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ on:
- main
- release/*
pull_request:
branches:
- main
- release/*
- dotnet-vnext
schedule:
- cron: '0 8 * * MON'
workflow_dispatch:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/dependency-review.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ name: dependency-review

on:
pull_request:
branches:
- main
- release/*
- dotnet-vnext

permissions: {}

Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ on:
- main
- release/*
pull_request:
branches:
- main
- release/*
- dotnet-vnext
workflow_dispatch:

permissions: {}
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ on:
- '**/*.gitignore'
- '**/*.md'
pull_request:
branches:
- main
- release/*
- dotnet-vnext
workflow_dispatch:

permissions: {}
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/mutation-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,6 @@ on:
- main
- release/*
pull_request:
branches:
- main
- release/*
- dotnet-vnext
workflow_dispatch:

env:
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/updater-approve.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,6 @@ name: updater-approve

on:
pull_request:
branches:
- main
- release/*
- dotnet-vnext

permissions: {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ public void Dispose_WhenScheduledTaskExecuting()
[Fact]
public void ScheduleTask_InlineContinuationDoesNotDeadlock()
{
var timeout = TimeSpan.FromSeconds(1);
var timeout = TimeSpan.FromSeconds(10);
using var scheduler = new ScheduledTaskExecutor();

var firstTask = scheduler.ScheduleTask(() => Task.CompletedTask);
Expand All @@ -147,7 +147,9 @@ public void ScheduleTask_InlineContinuationDoesNotDeadlock()
TaskContinuationOptions.ExecuteSynchronously,
TaskScheduler.Default);

continuationTask.Wait(timeout).ShouldBeTrue();
#pragma warning disable xUnit1031
Task.WaitAll([firstTask, continuationTask], timeout).ShouldBeTrue();
#pragma warning restore xUnit1031
}

[Fact]
Expand Down
Loading