We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8287632 commit 7ec6fdaCopy full SHA for 7ec6fda
build/Build.TestCalamariFlavourProject.cs
@@ -36,7 +36,7 @@ partial class Build
36
37
CreateTestRun(dll)
38
.WithDotNetPath(dotnetPath)
39
- .WithFilter("TestCategory != Linux && TestCategory != MacOs") // Windows is all tests that are non-Linux or MacOS specific
+ .WithFilter("TestCategory != Linux & TestCategory != MacOs") // Windows is all tests that are non-Linux or MacOS specific
40
.Execute();
41
});
42
@@ -53,7 +53,7 @@ partial class Build
53
54
55
56
- .WithFilter("TestCategory == Windows2016OrLater") // Windows 2016 or later specific tests
+ .WithFilter("TestCategory = Windows2016OrLater") // Windows 2016 or later specific tests
57
58
59
}
0 commit comments