Skip to content

Commit

Permalink
Run tests with CI runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
emlautarom1 committed Nov 15, 2024
1 parent c593933 commit a58d7cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nethermind-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
- name: ${{ matrix.project }}
id: test
run: |
dotnet test src/Nethermind/${{ matrix.project }} -c release \
dotnet test src/Nethermind/${{ matrix.project }} -c release -p:CI=true \
${{ env.COLLECT_COVERAGE == 'true' && '--collect:"XPlat Code Coverage"' || '' }}
- name: Save test outcome
if: success() || failure()
Expand Down Expand Up @@ -153,7 +153,7 @@ jobs:
- name: ${{ matrix.project }}
id: test
run: |
dotnet test src/Nethermind/${{ matrix.project }} -c release \
dotnet test src/Nethermind/${{ matrix.project }} -c release -p:CI=true \
${{ env.COLLECT_COVERAGE == 'true' && '--collect:"XPlat Code Coverage" -- DataCollectionRunSettings.DataCollectors.DataCollector.Configuration.Exclude=[Nethermind.Core.Test]*,[Nethermind.Blockchain.Test]*,[Ethereum.Test.Base]*' || '' }}
- name: Save test outcome
if: success() || failure()
Expand Down

0 comments on commit a58d7cb

Please sign in to comment.