-
-
Notifications
You must be signed in to change notification settings - Fork 188
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove project reference to System.Threading.Thead (#133)
* Remove project reference to System.Threading.Thead * Fix Actions double triggering * Run tests on Windows * Formatting * Do not run TW tests on Windows * Use Custom Fact to ignore on Windows * Ignore correct tests * Skip another failing test
- Loading branch information
1 parent
5df7fa9
commit 7c96719
Showing
6 changed files
with
35 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
using System.Runtime.InteropServices; | ||
using Xunit; | ||
|
||
public sealed class IgnoreOnWindowsFact : FactAttribute | ||
{ | ||
public IgnoreOnWindowsFact() { | ||
if(RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { | ||
Skip = "Ignore on Windows"; | ||
} | ||
} | ||
} |