diff --git a/.github/workflows/_e2e.yml b/.github/workflows/_e2e.yml index c68e7efb83f..c40ca8da2de 100644 --- a/.github/workflows/_e2e.yml +++ b/.github/workflows/_e2e.yml @@ -26,6 +26,9 @@ concurrency: group: e2e-${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true +env: + RUST_LOG: warn + jobs: # Run e2e test against localnet built on the develop branch localnet: @@ -64,7 +67,7 @@ jobs: - name: Set env run: | echo "VITE_IOTA_BIN=$PWD/target/debug/iota" >> $GITHUB_ENV - echo "E2E_RUN_LOCAL_NET_CMD=(RUST_LOG=info RUST_BACKTRACE=1 $(echo $PWD/target/debug/iota) start --with-faucet --force-regenesis --with-indexer --with-graphql)" >> $GITHUB_ENV + echo "E2E_RUN_LOCAL_NET_CMD=(RUST_BACKTRACE=1 $(echo $PWD/target/debug/iota) start --with-faucet --force-regenesis --with-indexer --with-graphql)" >> $GITHUB_ENV - name: Run TS SDK e2e tests if: inputs.isTypescriptSDK || inputs.isRust || github.ref_name == 'develop'