Skip to content

Commit

Permalink
Merge pull request #913 from adamralph/redundant-test-suppressions
Browse files Browse the repository at this point in the history
remove redundant test suppressions
  • Loading branch information
adamralph authored Sep 14, 2023
2 parents 70dec50 + 585bbcd commit b87c919
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 96 deletions.
5 changes: 1 addition & 4 deletions MinVerTests.Packages/Cleaning.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ namespace MinVerTests.Packages;

public static class Cleaning
{
[RestrictedTheory(
new[] { "^3.*", "^5.*", "^6.*", },
new[] { "OSX", },
"With an SDK less than what's being used to run this test, or on macOS, there is sometimes a 15 minute delay after the `dotnet build` command when multi-targeting")]
[Theory]
[InlineData(false)]
[InlineData(true)]
public static async Task PackagesAreCleaned(bool multiTarget)
Expand Down
5 changes: 1 addition & 4 deletions MinVerTests.Packages/MultipleProjects.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,7 @@ namespace MinVerTests.Packages;

public class MultipleProjects
{
[RestrictedFact(
new[] { "^3.*", "^5.*", "^6.*", },
new[] { "OSX", },
"With an SDK less than what's being used to run this test, or on macOS, there is sometimes a 15 minute delay after the `dotnet build` command")]
[Fact]
public async Task MultipleTagPrefixes()
{
// arrange
Expand Down
5 changes: 1 addition & 4 deletions MinVerTests.Packages/Repackaging.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,7 @@ namespace MinVerTests.Packages;

public static class Repackaging
{
[RestrictedTheory(
new[] { "^3.*", "^5.*", "^6.*", },
new[] { "OSX", },
"With an SDK less than what's being used to run this test, or on macOS, there is sometimes a 15 minute delay after the `dotnet build` command when multi-targeting")]
[Theory]
[InlineData(false)]
[InlineData(true)]
public static async Task DoesNotRecreatePackage(bool multiTarget)
Expand Down
42 changes: 0 additions & 42 deletions MinVerTests.Packages/RestrictedFact.cs

This file was deleted.

42 changes: 0 additions & 42 deletions MinVerTests.Packages/RestrictedTheory.cs

This file was deleted.

0 comments on commit b87c919

Please sign in to comment.