From 15c2db9e18e9973b9b98fbeeea6b81f55cb10419 Mon Sep 17 00:00:00 2001 From: Erwan Date: Thu, 5 Sep 2024 11:14:26 +0200 Subject: [PATCH] Update spec logs to run slow specs last --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index af0cc7ed7..ff6b27b04 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,9 +31,11 @@ jobs: run: | bundle exec rubocop + # Specs which are not tagged as slow will run first to speed up the process in case of failure - name: rspec run: | - bundle exec rspec + bundle exec rspec --tag ~slow + bundle exec rspec --tag slow - name: Coveralls uses: coverallsapp/github-action@master