DEV: Disable parallel system specs in GitHub actions (#20023)

We have some flakiness which needs to be resolved. Followup to e717529d80
This commit is contained in:
David Taylor
2023-01-26 14:37:47 +00:00
committed by GitHub
parent 2c9d76e510
commit b96869d5fb

View File

@@ -179,11 +179,11 @@ jobs:
- name: Core System Tests
if: matrix.build_type == 'system' && matrix.target == 'core'
run: PARALLEL_TEST_PROCESSORS=4 bin/turbo_rspec --verbose spec/system
run: PARALLEL_TEST_PROCESSORS=1 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 --verbose plugins/*/spec/system
run: LOAD_PLUGINS=1 PARALLEL_TEST_PROCESSORS=1 bin/turbo_rspec --verbose plugins/*/spec/system
- name: Upload failed system test screenshots
uses: actions/upload-artifact@v3