Skip to content

Commit

Permalink
Do not run Integrations Tests in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
medokin committed Jun 11, 2019
1 parent a9eccfc commit f2dd34f
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ Task("Build").Does(() =>
Configuration = config
}));

Task("Test")
.IsDependentOn("Build")
.Does(() => DotNetCoreTest(srcDir, new DotNetCoreTestSettings {
Configuration = config,
NoBuild = true
}));

Task("Pack")
.IsDependentOn("SemVer")
.Does(() => {
Expand Down Expand Up @@ -67,6 +60,5 @@ Task("Default")
.IsDependentOn("SemVer")
.IsDependentOn("Clean")
.IsDependentOn("Build")
.IsDependentOn("Test");

RunTarget(target);

0 comments on commit f2dd34f

Please sign in to comment.