Skip to content

Commit

Permalink
Revert Stryker debugging
Browse files Browse the repository at this point in the history
Revert changes made to try and get Stryker working as it's been confirmed there's a bug.
  • Loading branch information
martincostello authored Sep 23, 2024
1 parent d3582f0 commit 4cf588d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
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} --log-to-file";
var args = $"{strykerPath} --project {project} --test-project {testProj.FullPath} --break-at {score} --config-file {strykerConfig} --output {strykerOutput}/{project}";
var result = StartProcess("dotnet", args);
if (result != 0)
Expand Down
1 change: 1 addition & 0 deletions eng/stryker-config.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
"statement"
],
"configuration": "Debug",
"target-framework": "net8.0",
"thresholds": {
"high": 100,
"low": 100
Expand Down
2 changes: 1 addition & 1 deletion test/Polly.Specs/Polly.Specs.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net8.0;net6.0</TargetFrameworks>
<TargetFrameworks>net6.0;net8.0</TargetFrameworks>
<TargetFrameworks Condition="$([MSBuild]::IsOSPlatform('Windows'))">$(TargetFrameworks);net481</TargetFrameworks>
<Nullable>enable</Nullable>
<ProjectType>Test</ProjectType>
Expand Down

0 comments on commit 4cf588d

Please sign in to comment.