From 6ab2f0b24e6c2aa16020c5ecce32e39028bfb874 Mon Sep 17 00:00:00 2001 From: Joey Robichaud Date: Wed, 28 Aug 2019 10:20:59 -0700 Subject: [PATCH] Skip NuGetRepack tests until they can be stabilized --- .../tests/ReplacePackagePartsTests.cs | 2 +- .../tests/VersionUpdaterTests.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/src/Microsoft.DotNet.NuGetRepack/tests/ReplacePackagePartsTests.cs b/src/Microsoft.DotNet.NuGetRepack/tests/ReplacePackagePartsTests.cs index c4636310252..b873e8b1ba5 100644 --- a/src/Microsoft.DotNet.NuGetRepack/tests/ReplacePackagePartsTests.cs +++ b/src/Microsoft.DotNet.NuGetRepack/tests/ReplacePackagePartsTests.cs @@ -11,7 +11,7 @@ namespace Microsoft.DotNet.Tools.Tests { public class ReplacePackagePartsTests { - [Fact] + [Fact(Skip = "https://github.com/dotnet/arcade/issues/3794")] public static void ReplaceFile() { var dir = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); diff --git a/src/Microsoft.DotNet.NuGetRepack/tests/VersionUpdaterTests.cs b/src/Microsoft.DotNet.NuGetRepack/tests/VersionUpdaterTests.cs index 775f14679f1..60d4f84c97d 100644 --- a/src/Microsoft.DotNet.NuGetRepack/tests/VersionUpdaterTests.cs +++ b/src/Microsoft.DotNet.NuGetRepack/tests/VersionUpdaterTests.cs @@ -52,7 +52,7 @@ private static void AssertPackagesEqual(byte[] expected, byte[] actual) // the SemVer tests were built on Windows which makes these test only valid for Windows. // // This can be removed when https://github.com/dotnet/corefx/issues/39931 is fixed. - [WindowsOnlyFact] + [WindowsOnlyFact(Skip = "https://github.com/dotnet/arcade/issues/3794")] public void TestPackagesSemVer1() { var dir = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); @@ -90,7 +90,7 @@ public void TestPackagesSemVer1() Directory.Delete(dir, recursive: true); } - [WindowsOnlyFact] + [WindowsOnlyFact(Skip = "https://github.com/dotnet/arcade/issues/3794")] public void TestPackagesSemVer2() { var dir = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); @@ -118,7 +118,7 @@ public void TestPackagesSemVer2() Directory.Delete(dir, recursive: true); } - [Fact] + [WindowsOnlyFact(Skip = "https://github.com/dotnet/arcade/issues/3794")] public void TestValidation() { var dir = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString()); @@ -157,7 +157,7 @@ public void TestValidation() Directory.Delete(dir, recursive: true); } - [Fact] + [WindowsOnlyFact(Skip = "https://github.com/dotnet/arcade/issues/3794")] public void TestDotnetToolValidation() { var dir = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());