Skip to content

Commit faf409d

Browse files
committed
chore: modify test filter to exclude all wasm tests
1 parent 46cf025 commit faf409d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/generate-coverage-report.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
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 --project tests/BenchmarkDotNet.IntegrationTests -c Release --no-build --framework net8.0 --filter-query "/*/*/(!*DotMemoryTests)&(!*DotTraceTests)/(!*WasmIsSupported)&(!*WasmSupportsInProcessDiagnosers)"'
53+
dotnet coverage connect bdn_coverage 'dotnet test --project tests/BenchmarkDotNet.IntegrationTests -c Release --no-build --framework net8.0 --filter-query "/*/*/(!*DotMemoryTests)&(!*DotTraceTests)&(!*WasmTests)"' --no-ansi --output Detailed
5454
5555
- name: Shutdown dotnet-coverage server.
5656
run: dotnet coverage shutdown bdn_coverage --timeout 60000
@@ -86,7 +86,7 @@ jobs:
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 --project tests/BenchmarkDotNet.IntegrationTests -c Release --no-build --framework net472 --filter-query "/*/*/(!*DotMemoryTests)&(!*DotTraceTests)/(!*WasmIsSupported)&(!*WasmSupportsInProcessDiagnosers)"'
89+
dotnet coverage connect bdn_coverage 'dotnet test --project tests/BenchmarkDotNet.IntegrationTests -c Release --no-build --framework net472 --filter-query "/*/*/(!*DotMemoryTests)&(!*DotTraceTests)&(!*WasmTests)"' --no-ansi --output Detailed
9090
9191
- name: Shutdown dotnet-coverage server.
9292
run: dotnet coverage shutdown bdn_coverage --timeout 60000

0 commit comments

Comments
 (0)