• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

lucaslorentz / durabletask-extensions / 5835585770

pending completion
5835585770

push

github

lucaslorentz
Add husky and apply some code fixes

2502 of 2502 new or added lines in 91 files covered. (100.0%)

2298 of 2792 relevant lines covered (82.31%)

142.7 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/LLL.DurableTask.EFCore/Extensions/TaskExtensions.cs
1
using System.Collections.Generic;
2
using System.Threading.Tasks;
3

4
namespace LLL.DurableTask.EFCore.Extensions;
5

6
public static class TaskExtensions
7
{
8
    public static async Task<List<T>> WhenAllSerial<T>(this IEnumerable<Task<T>> tasks)
9
    {
10
        var result = new List<T>();
×
11
        foreach (var task in tasks)
×
12
        {
13
            result.Add(await task);
×
14
        }
15
        return result;
×
16
    }
17
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc