Browse Source

skip RemoteExecutor_FailingRemoteTestShouldFailLocalTest on 32 bit Framework

pull/1659/head
Anton Firszov 5 years ago
parent
commit
73d273d425
  1. 8
      tests/ImageSharp.Tests/TestUtilities/Tests/TestEnvironmentTests.cs

8
tests/ImageSharp.Tests/TestUtilities/Tests/TestEnvironmentTests.cs

@ -118,6 +118,14 @@ namespace SixLabors.ImageSharp.Tests
[Fact]
public void RemoteExecutor_FailingRemoteTestShouldFailLocalTest()
{
if (TestEnvironment.IsFramework && !TestEnvironment.Is64BitProcess)
{
// The RemoteExecutor fix does not work well with the "dotnet xunit" call
// we use with Framework on 32 bit:
// https://github.com/SixLabors/ImageSharp/blob/381dff8640b721a34b1227c970fcf6ad6c5e3e72/ci-test.ps1#L30
return;
}
static void FailingCode()
{
Assert.False(true);

Loading…
Cancel
Save