From 5324216740be96e82500c56009d876abce17f4a5 Mon Sep 17 00:00:00 2001 From: Daniel Waterworth Date: Wed, 15 Mar 2023 14:40:45 -0500 Subject: [PATCH] DEV: Use rspec instead of turbo_rspec with one core --- .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 121ef1357f5..a6613693b5b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -182,11 +182,11 @@ jobs: - name: Core System Tests if: matrix.build_type == 'system' && matrix.target == 'core' - run: PARALLEL_TEST_PROCESSORS=1 bin/turbo_rspec --verbose spec/system + run: bin/rspec spec/system - name: Plugin System Tests if: matrix.build_type == 'system' && matrix.target == 'plugins' - run: LOAD_PLUGINS=1 PARALLEL_TEST_PROCESSORS=1 bin/turbo_rspec --verbose plugins/*/spec/system + run: LOAD_PLUGINS=1 bin/rspec plugins/*/spec/system - name: Upload failed system test screenshots uses: actions/upload-artifact@v3