diff --git a/.github/workflows/nethermind-tests.yml b/.github/workflows/nethermind-tests.yml index c5b1ee08652..9b2ab862d23 100644 --- a/.github/workflows/nethermind-tests.yml +++ b/.github/workflows/nethermind-tests.yml @@ -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() @@ -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()