DEV: Use rspec instead of turbo_rspec with one core

This commit is contained in:
Daniel Waterworth 2023-03-15 14:40:45 -05:00
parent 94fd884297
commit 5324216740
1 changed files with 2 additions and 2 deletions

View File

@ -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