Skip to content

Commit

Permalink
ci: do not show test detail immediately (#4454)
Browse files Browse the repository at this point in the history
TESTOPTS=-v shows running test and the result.
If something weird happen, it show error immediately.

As rake task executes many tests, so it may be better to
delay showing test details later.

NOTE: --progress-style=fault-only helps you to focus on
failure, but it is inconvenient when test case has stalled.

Signed-off-by: Kentaro Hayashi <hayashi@clear-code.com>
Co-authored-by: Kentaro Hayashi <hayashi@clear-code.com>
  • Loading branch information
daipom and kenhys committed Mar 27, 2024
1 parent 95d130a commit 44d132c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Expand Up @@ -29,4 +29,4 @@ jobs:
- name: Install dependencies
run: bundle install
- name: Run tests
run: bundle exec rake test TESTOPTS=-v
run: bundle exec rake test TESTOPTS="-v --no-show-detail-immediately"

0 comments on commit 44d132c

Please sign in to comment.