Skip to content

Commit 28d7a98

Browse files
committed
chore: update filter syntax of generate-coverage-report.yaml
1 parent e645386 commit 28d7a98

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.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 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 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
@@ -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 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 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

Comments
 (0)