• 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

94.44
/src/LLL.DurableTask.EFCore/Entities/Execution.cs
1
using System;
2
using System.Collections.Generic;
3
using DurableTask.Core;
4

5
namespace LLL.DurableTask.EFCore.Entities;
6

7
public class Execution
8
{
9
    public string ExecutionId { get; set; }
868✔
10

11
    public string InstanceId { get; set; }
869✔
12

13
    public string Name { get; set; }
868✔
14
    public string Version { get; set; }
868✔
15

16
    public DateTime CreatedTime { get; set; }
869✔
17
    public DateTime CompletedTime { get; set; }
868✔
18
    public DateTime LastUpdatedTime { get; set; }
868✔
19

20
    public long CompressedSize { get; set; }
868✔
21
    public long Size { get; set; }
868✔
22

23
    public OrchestrationStatus Status { get; set; }
868✔
24

25
    public string FailureDetails { get; set; }
874✔
26

27
    public string CustomStatus { get; set; }
868✔
28

29
    public string ParentInstance { get; set; }
868✔
30

31
    public HashSet<Tag> Tags { get; } = new HashSet<Tag>();
2,168✔
32

33
    public string Input { get; set; }
868✔
34

35
    public string Output { get; set; }
868✔
36

37
    public IList<Event> Events { get; } = new List<Event>();
2,477✔
38

39
    public Instance LastExecutionInstance { get; set; }
×
40
}
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