From aaec7b70a14fb0c98ef7bead63d28590f11260c9 Mon Sep 17 00:00:00 2001 From: Kentaro Hayashi Date: Wed, 27 Mar 2024 16:41:33 +0900 Subject: [PATCH] ci: do not show test detail immediately 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 --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9332491372..666aa97b86 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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"