From 73c71ecd03e88f85a3f620b54adda609108382d4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Gaspard?= Date: Thu, 16 Nov 2023 02:22:30 +0000 Subject: [PATCH] disable integration-tests for macos at the right place --- .github/workflows/ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2600421275d..036ba398911 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,7 +59,8 @@ jobs: os: macos-latest-xlarge # FIXME: some of these tests don't work very well on MacOS at the moment. Should fix # them at earliest convenience :) - flags: "--exclude integration-tests --exclude node-runtime --exclude runtime-params-estimator --exclude near-network --exclude estimator-warehouse" + # Note that integration-tests are disabled at the step running them in the job below. + flags: "--exclude node-runtime --exclude runtime-params-estimator --exclude near-network --exclude estimator-warehouse" timeout-minutes: 90 steps: # Some of the tests allocate really sparse maps, so heuristic-based overcommit limits are not @@ -101,6 +102,7 @@ jobs: # Run integration tests - run: cargo nextest run --locked --package integration-tests --cargo-profile quick-release --profile ci ${{ matrix.flags }} + if: matrix.id != 'macos' env: RUST_BACKTRACE: short - run: cargo llvm-cov report --profile quick-release --codecov --output-path integration-tests.json