Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Commit

Permalink
Exclude DatabaseHealthCheck from code coverage tests
Browse files Browse the repository at this point in the history
  • Loading branch information
KowalskiPiotr98 committed Sep 6, 2021
1 parent 7c82822 commit b7f7224
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Linq;
using System.Diagnostics.CodeAnalysis;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.EntityFrameworkCore;
Expand All @@ -7,6 +8,7 @@

namespace Rinkudesu.Services.Links.HealthChecks
{
[ExcludeFromCodeCoverage]
public class DatabaseHealthCheck : IHealthCheck
{
private readonly LinkDbContext _context;
Expand Down

0 comments on commit b7f7224

Please sign in to comment.