Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
8 changes: 4 additions & 4 deletions src/Microsoft.DotNet.NuGetRepack/tests/VersionUpdaterTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down Expand Up @@ -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());
Expand Down Expand Up @@ -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());
Expand Down Expand Up @@ -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());
Expand Down