Skip to content

Commit

Permalink
Output Stryker logs
Browse files Browse the repository at this point in the history
Include logs from Stryker in the mutation reports.
  • Loading branch information
martincostello committed Sep 18, 2024
1 parent 4b03bdf commit 244c20a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@ Task("__RunMutationTests")
Information($"Running mutation tests for '{proj}'. Test Project: '{testProj}'");
var args = $"{strykerPath} --dev-mode --project {project} --test-project {testProj.FullPath} --break-at {score} --config-file {strykerConfig} --output {strykerOutput}/{project}";
var args = $"{strykerPath} --dev-mode --project {project} --test-project {testProj.FullPath} --break-at {score} --config-file {strykerConfig} --output {strykerOutput}/{project} --log-to-file {strykerOutput}/styker.log";
var result = StartProcess("dotnet", args);
if (result != 0)
Expand Down

0 comments on commit 244c20a

Please sign in to comment.