Browse Source

Update build.cake

pull/695/merge
Wiesław Šoltés 10 years ago
committed by GitHub
parent
commit
41da9ecddd
  1. 6
      build.cake

6
build.cake

@ -629,13 +629,9 @@ Task("Build")
Task("Run-Unit-Tests")
.IsDependentOn("Build")
.WithCriteria(() => !skipTests)
.Does(() =>
{
if(skipTests)
{
Information("Skipping unit tests because of -skip-tests");
return;
}
var pattern = "./tests/Avalonia.*.UnitTests/bin/" + dirSuffix + "/Avalonia.*.UnitTests.dll";
Func<IFileSystemInfo, bool> ExcludeWindowsTests = i => {

Loading…
Cancel
Save