Skip to content

Commit 7ec6fda

Browse files
committed
Fix windows filters
1 parent 8287632 commit 7ec6fda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build/Build.TestCalamariFlavourProject.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ partial class Build
3636

3737
CreateTestRun(dll)
3838
.WithDotNetPath(dotnetPath)
39-
.WithFilter("TestCategory != Linux && TestCategory != MacOs") // Windows is all tests that are non-Linux or MacOS specific
39+
.WithFilter("TestCategory != Linux & TestCategory != MacOs") // Windows is all tests that are non-Linux or MacOS specific
4040
.Execute();
4141
});
4242

@@ -53,7 +53,7 @@ partial class Build
5353

5454
CreateTestRun(dll)
5555
.WithDotNetPath(dotnetPath)
56-
.WithFilter("TestCategory == Windows2016OrLater") // Windows 2016 or later specific tests
56+
.WithFilter("TestCategory = Windows2016OrLater") // Windows 2016 or later specific tests
5757
.Execute();
5858
});
5959
}

0 commit comments

Comments
 (0)