From b47505e44ac4238ce9a06b135d0d1f6c1962e96d Mon Sep 17 00:00:00 2001 From: Martin Brennan Date: Tue, 3 Jan 2023 12:15:36 +1000 Subject: [PATCH] DEV: Add --fail-fast=10 for plugin system specs If there are 10 failing, everything is probably broken, and we don't want to wait for the whole thing to have to finish. --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9e207c2534..857fbb349d 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -177,7 +177,7 @@ jobs: - name: Plugin System Tests if: matrix.build_type == 'system' && matrix.target == 'plugins' - run: LOAD_PLUGINS=1 bin/rspec plugins/*/spec/system --format documentation --profile + run: LOAD_PLUGINS=1 bin/rspec plugins/*/spec/system --format documentation --profile --fail-fast=10 - name: Upload failed system test screenshots uses: actions/upload-artifact@v3