Skip to content

Commit

Permalink
Remove unused tools from Cake script
Browse files Browse the repository at this point in the history
+semver:patch
  • Loading branch information
hazzik committed Oct 8, 2020
1 parent fc503bb commit aa8d1e7
Showing 1 changed file with 0 additions and 14 deletions.
14 changes: 0 additions & 14 deletions build.cake
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#addin "Cake.FileHelpers"
#tool "nuget:?package=NUnit.ConsoleRunner&version=3.8.0"
#tool "nuget:?package=Machine.Specifications.Runner.Console&version=0.9.3"
#tool "nuget:?package=GitReleaseManager&version=0.11.0"
#tool "nuget:?package=GitVersion.CommandLine&version=5.3.7"

Expand Down Expand Up @@ -83,18 +81,6 @@ Task("Test")
var specProjects = GetFiles("./src/**/*.Specs.csproj");
var testProjects = unitProjects.Union(specProjects).ToArray();
// foreach (var framework in frameworks)
// {
// var testAssemblies = $"./src/**/bin/{parameters.Configuration}/{framework}/*.Testing.dll";
// NUnit3(testAssemblies, new NUnit3Settings {
// NoResults = true
// });
// testAssemblies = $"./src/**/bin/{parameters.Configuration}/{framework}/*.Specs.dll";
// MSpec(testAssemblies, new MSpecSettings {
// Silent = true
// });
// }
foreach(var project in testProjects)
{
DotNetCoreTest(project.ToString(), new DotNetCoreTestSettings
Expand Down

0 comments on commit aa8d1e7

Please sign in to comment.