From b9c73d003b2d329c2df114aa7ab559687198cdc1 Mon Sep 17 00:00:00 2001 From: Kat Date: Tue, 14 Mar 2023 09:27:36 +0000 Subject: [PATCH] Add parallel tests to prod pipeline --- .github/workflows/production_pipeline.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/production_pipeline.yml b/.github/workflows/production_pipeline.yml index 23bb69c00..fdf8ead4d 100644 --- a/.github/workflows/production_pipeline.yml +++ b/.github/workflows/production_pipeline.yml @@ -71,7 +71,7 @@ jobs: - name: Create database run: | - bundle exec rake db:prepare + bundle exec rake parallel:setup - name: Compile Assets run: | @@ -79,7 +79,7 @@ jobs: - name: Run tests run: | - bundle exec rspec --exclude-pattern "features/*" --fail-fast + bundle exec rake parallel:spec['spec\/(?!features)'] feature_test: name: Feature Tests