Skip to content

Commit

Permalink
Run Stryker within test project context
Browse files Browse the repository at this point in the history
  • Loading branch information
iamdmitrij committed Jul 4, 2023
1 parent 80824af commit e4b4b8c
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/stryker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,9 @@ jobs:
extra_reporter="cleartext"
fi
dotnet stryker --verbosity trace --concurrency 1 --config-file test/Tethos.Tests/stryker-config.json
cd test/Tethos.Tests
dotnet stryker --verbosity debug --config-file stryker-config.json
--version "$target_branch"
--reporter "$extra_reporter"
--reporter "cleartext"
Expand Down Expand Up @@ -118,7 +120,9 @@ jobs:
extra_reporter="cleartext"
fi
dotnet stryker --verbosity trace --concurrency 1 --config-file test/Tethos.Moq.Tests/stryker-config.json
cd test/Tethos.Moq.Tests
dotnet stryker --verbosity debug --config-file stryker-config.json
--version "$target_branch"
--reporter "$extra_reporter"
--reporter "cleartext"
Expand Down Expand Up @@ -166,7 +170,9 @@ jobs:
extra_reporter="cleartext"
fi
dotnet stryker --verbosity trace --concurrency 1 --config-file test/Tethos.FakeItEasy.Tests/stryker-config.json
cd test/Tethos.FakeItEasy.Tests
dotnet stryker --debug --config-file stryker-config.json
--version "$target_branch"
--reporter "$extra_reporter"
--reporter "cleartext"
Expand Down Expand Up @@ -214,7 +220,9 @@ jobs:
extra_reporter="cleartext"
fi
dotnet stryker --verbosity trace --concurrency 1 --config-file test/Tethos.NSubstitute.Tests/stryker-config.json
cd test/Tethos.NSubstitute.Tests
dotnet stryker --verbosity debug --config-file stryker-config.json
--version "$target_branch"
--reporter "$extra_reporter"
--reporter "cleartext"
Expand Down

0 comments on commit e4b4b8c

Please sign in to comment.