@@ -44,13 +44,13 @@ jobs:
4444
4545 - name : Collect Code Coverage
4646 run : |
47- dotnet coverage connect bdn_coverage "dotnet test tests/BenchmarkDotNet.Tests -c Release --no-build --framework net8.0"
48- dotnet coverage connect bdn_coverage "dotnet test tests/BenchmarkDotNet.Analyzers.Tests -c Release --no-build --framework net8.0"
47+ dotnet coverage connect bdn_coverage "dotnet test --project tests/BenchmarkDotNet.Tests -c Release --no-build --framework net8.0"
48+ dotnet coverage connect bdn_coverage "dotnet test --project tests/BenchmarkDotNet.Analyzers.Tests -c Release --no-build --framework net8.0"
4949
5050 - name : Collect Code Coverage for BenchmarkDotNet.IntegrationTests
5151 if : ${{ github.event.inputs.skip_integration_tests == 'false'}}
5252 run : |
53- dotnet coverage connect bdn_coverage 'dotnet test tests/BenchmarkDotNet.IntegrationTests -c Release --no-build --framework net8.0 --filter "(FullyQualifiedName!~ DotMemoryTests) & (FullyQualifiedName!~ DotTraceTests) & (FullyQualifiedName!~ WasmIsSupported) & (FullyQualifiedName!~ WasmSupportsInProcessDiagnosers)"'
53+ dotnet coverage connect bdn_coverage 'dotnet test --project tests/BenchmarkDotNet.IntegrationTests -c Release --no-build --framework net8.0 --filter-query "/*/*/(!* DotMemoryTests)&(!* DotTraceTests)/(!* WasmIsSupported)&(!* WasmSupportsInProcessDiagnosers)"'
5454
5555 - name : Shutdown dotnet-coverage server.
5656 run : dotnet coverage shutdown bdn_coverage --timeout 60000
@@ -80,13 +80,13 @@ jobs:
8080
8181 - name : Collect Code Coverage
8282 run : |
83- dotnet coverage connect bdn_coverage "dotnet test tests/BenchmarkDotNet.Tests -c Release --no-build --framework net472"
84- dotnet coverage connect bdn_coverage "dotnet test tests/BenchmarkDotNet.Analyzers.Tests -c Release --no-build --framework net472"
83+ dotnet coverage connect bdn_coverage "dotnet test --project tests/BenchmarkDotNet.Tests -c Release --no-build --framework net472"
84+ dotnet coverage connect bdn_coverage "dotnet test --project tests/BenchmarkDotNet.Analyzers.Tests -c Release --no-build --framework net472"
8585
8686 - name : Collect Code Coverage for BenchmarkDotNet.IntegrationTests
8787 if : ${{ github.event.inputs.skip_integration_tests == 'false'}}
8888 run : |
89- dotnet coverage connect bdn_coverage 'dotnet test tests/BenchmarkDotNet.IntegrationTests -c Release --no-build --framework net472 --filter "(FullyQualifiedName!~ DotMemoryTests) & (FullyQualifiedName!~ DotTraceTests) & (FullyQualifiedName!~ WasmIsSupported) & (FullyQualifiedName!~ WasmSupportsInProcessDiagnosers)"'
89+ dotnet coverage connect bdn_coverage 'dotnet test --project tests/BenchmarkDotNet.IntegrationTests -c Release --no-build --framework net472 --filter-query "/*/*/(!* DotMemoryTests)&(!* DotTraceTests)/(!* WasmIsSupported)&(!* WasmSupportsInProcessDiagnosers)"'
9090
9191 - name : Shutdown dotnet-coverage server.
9292 run : dotnet coverage shutdown bdn_coverage --timeout 60000
0 commit comments