However, I have found that while 400 of these te
There is a new options now.
Add Nuget Package SkippableFact, which allows you to use [SkippableFact]
instead of [Fact]
and you can use Skip.
within a Tests to dynamically Skip the Test during runtime.
Example:
[SkippableFact]
public void SomeTestForWindowsOnly()
{
Skip.IfNot(Environment.IsWindows);
// Test Windows only functionality.
}