We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33c1519 commit 835493eCopy full SHA for 835493e
build.cake
@@ -142,8 +142,9 @@ Task("Run-Tests")
142
{
143
var settings = new DotNetCoreTestSettings
144
145
- Configuration = configuration,
146
- NoBuild = true,
+ Configuration = configuration,
+ NoBuild = true,
147
+ Filter = "TestCategory!=NoMono"
148
};
149
150
DotNetCoreTest("./src/GitVersionCore.Tests/GitVersionCore.Tests.csproj", settings);
@@ -474,10 +475,8 @@ Task("Upload-AppVeyor-Artifacts")
474
475
Error(exception.Dump());
476
});
477
-
478
479
Task("Travis")
480
- .IsDependentOn("Run-Tests-In-NUnitConsole");
+ .IsDependentOn("Run-Tests");
481
482
Task("Default")
483
.IsDependentOn("Upload-AppVeyor-Artifacts");
0 commit comments