From 1f6d57ab93a006579cbcedd8d66befd260fa88ff Mon Sep 17 00:00:00 2001 From: Alan Guo Xiang Tan <gxtan1990@gmail.com> Date: Thu, 4 May 2023 10:34:02 +0800 Subject: [PATCH] DEV: Run turbo rspecs with verbose output on CI (#21379) In CI, we the output to be as verbose as possible so that when it fails we have the necessary information to debug the failures. --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index db9e635294c..9695d54d2ca 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -197,11 +197,11 @@ jobs: - name: Core System Tests if: matrix.build_type == 'system' && matrix.target == 'core' - run: PARALLEL_TEST_PROCESSORS=4 bin/turbo_rspec spec/system + run: PARALLEL_TEST_PROCESSORS=4 bin/turbo_rspec --verbose spec/system - name: Plugin System Tests if: matrix.build_type == 'system' && matrix.target == 'plugins' - run: LOAD_PLUGINS=1 PARALLEL_TEST_PROCESSORS=4 bin/turbo_rspec plugins/*/spec/system + run: LOAD_PLUGINS=1 PARALLEL_TEST_PROCESSORS=4 bin/turbo_rspec --verbose plugins/*/spec/system timeout-minutes: 30 - name: Upload failed system test screenshots