diff --git a/.github/workflows/develop.yml b/.github/workflows/develop.yml index 53c4474..6ed212f 100644 --- a/.github/workflows/develop.yml +++ b/.github/workflows/develop.yml @@ -37,7 +37,7 @@ jobs: run: dotnet build --no-restore -c Release -v n - name: Unit Tests run: | - dotnet test -c Release --no-build -v n --filter="Category=Unit" + dotnet test -c Release /p:CollectCoverage=true /p:CoverletOutputFormat=cobertura --no-build -v n --filter="Category=Unit" mkdir coverage-report - name: Code Coverage Summary Report For Merge Request if: github.event_name == 'pull_request_target' diff --git a/tests/HydraScript.Tests/HydraScript.Tests.csproj b/tests/HydraScript.Tests/HydraScript.Tests.csproj index ea1555a..0b82692 100644 --- a/tests/HydraScript.Tests/HydraScript.Tests.csproj +++ b/tests/HydraScript.Tests/HydraScript.Tests.csproj @@ -8,11 +8,6 @@ false true - - - true - cobertura -