Skip to content

Commit

Permalink
Exclude migration from code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
davewalker5 committed Nov 14, 2023
1 parent c22e576 commit ad5f15f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,11 @@
using Microsoft.EntityFrameworkCore.Migrations;
using System.Diagnostics.CodeAnalysis;

#nullable disable

namespace MusicCatalogue.Data.Migrations
{
[ExcludeFromCodeCoverage]
/// <inheritdoc />
public partial class SearchableName : Migration
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,13 @@
using Microsoft.EntityFrameworkCore.Infrastructure;
using Microsoft.EntityFrameworkCore.Storage.ValueConversion;
using MusicCatalogue.Data;
using System.Diagnostics.CodeAnalysis;

#nullable disable

namespace MusicCatalogue.Data.Migrations
{
[ExcludeFromCodeCoverage]
[DbContext(typeof(MusicCatalogueDbContext))]
partial class MusicCatalogueDbContextModelSnapshot : ModelSnapshot
{
Expand Down

0 comments on commit ad5f15f

Please sign in to comment.