DEV: Use progress RSpec formatter in CI for non-system jobs (#35803)

GitHub's log viewing UI can't keep up with our 32k output lines from
core rspec runs, or the 12k lines from plugin rspec. It seems ok with
the 3k from core system specs, so we'll leave that as documentation for
easier debugging
This commit is contained in:
David Taylor
2025-11-05 10:12:18 +00:00
committed by GitHub
parent 5af43b64ce
commit 02b4cb1996
+2 -2
View File
@@ -266,11 +266,11 @@ jobs:
- name: Core RSpec
if: matrix.build_type == 'backend' && matrix.target == 'core'
run: bin/turbo_rspec --use-runtime-info --verbose --format=documentation --profile=50
run: bin/turbo_rspec --use-runtime-info --verbose --format=progress --profile=50
- name: Plugin RSpec
if: matrix.build_type == 'backend' && matrix.target == 'plugins'
run: bin/rake plugin:turbo_spec['*','--verbose --format=documentation --use-runtime-info --profile=50']
run: bin/rake plugin:turbo_spec['*','--verbose --format=progress --use-runtime-info --profile=50']
- name: Core QUnit
if: matrix.build_type == 'frontend' && matrix.target == 'core'