Skip to content

Commit

Permalink
Temporarily disabled tests until #132 is resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
gasparnagy committed May 14, 2024
1 parent b7e41d4 commit a645d60
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Tests/Reqnroll.SystemTests/Portability/PortabilityTestBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using Reqnroll.TestProjectGenerator;
using Reqnroll.TestProjectGenerator.Driver;
using System;
using System.Runtime.InteropServices;

namespace Reqnroll.SystemTests.Portability;

Expand Down Expand Up @@ -32,6 +33,11 @@ public void GeneratorAllIn_sample_can_be_handled(UnitTestProvider unitTestProvid
{
RunSkippableTest(() =>
{
//TODO: Temporarily disabled tests until https://github.com/reqnroll/Reqnroll/issues/132 is resolved
if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux) &&
unitTestProvider == UnitTestProvider.xUnit)
Assert.Inconclusive("Temporarily disabled tests until https://github.com/reqnroll/Reqnroll/issues/132 is resolved");

_testRunConfiguration.UnitTestProvider = unitTestProvider;

PrepareGeneratorAllInSamples();
Expand Down

0 comments on commit a645d60

Please sign in to comment.