16 lines
422 B
C#
16 lines
422 B
C#
using Microsoft.DotNet.PlatformAbstractions;
|
|
using Xunit;
|
|
|
|
namespace Microsoft.DotNet.Tools.Test.Utilities
|
|
{
|
|
public class NonWindowsOnlyFactAttribute : FactAttribute
|
|
{
|
|
public NonWindowsOnlyFactAttribute()
|
|
{
|
|
if (RuntimeEnvironment.OperatingSystemPlatform == Platform.Windows)
|
|
{
|
|
this.Skip = "This test requires windows to run";
|
|
}
|
|
}
|
|
}
|
|
}
|