Skip to content

Commit

Permalink
Remove unnecessary filters (open-telemetry#599)
Browse files Browse the repository at this point in the history
  • Loading branch information
utpilla authored Aug 22, 2022
1 parent 7386a19 commit 1bc197e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core-cov.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
run: dotnet build --configuration Release --no-restore

- name: dotnet test
run: dotnet test --collect:"Code Coverage" --results-directory:"TestResults" --configuration Release --no-build --filter "Platform=Any|Platform=Windows" -- RunConfiguration.DisableAppDomain=true
run: dotnet test --collect:"Code Coverage" --results-directory:"TestResults" --configuration Release --no-build -- RunConfiguration.DisableAppDomain=true

- name: Process code coverage
run: .\build\process-codecoverage.ps1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/package-Exporter.Geneva.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
run: dotnet build src/${{env.PROJECT}} --configuration Release --no-restore -p:Deterministic=true

- name: dotnet test ${{env.PROJECT}}
run: dotnet test test/${{env.PROJECT}}.Tests --filter "Platform=Any|Platform=Windows"
run: dotnet test test/${{env.PROJECT}}.Tests

- name: dotnet pack ${{env.PROJECT}}
run: dotnet pack src/${{env.PROJECT}} --configuration Release --no-build
Expand Down

0 comments on commit 1bc197e

Please sign in to comment.