DEV: Run system tests with documentation format on github actions (#21069)

Allows us to see the tests which have timed out
This commit is contained in:
Alan Guo Xiang Tan 2023-04-12 14:47:05 +08:00 committed by GitHub
parent d151f4ee9d
commit 3cb9fd739a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -198,11 +198,11 @@ jobs:
- name: Core System Tests
if: matrix.build_type == 'system' && matrix.target == 'core'
run: bin/rspec spec/system -f d
run: bin/rspec spec/system --format documentation
- name: Plugin System Tests
if: matrix.build_type == 'system' && matrix.target == 'plugins'
run: LOAD_PLUGINS=1 bin/rspec plugins/*/spec/system
run: LOAD_PLUGINS=1 bin/rspec plugins/*/spec/system --format documentation
- name: Upload failed system test screenshots
uses: actions/upload-artifact@v3