From 9c9b038ef80faa883912748238647d5552158151 Mon Sep 17 00:00:00 2001 From: Gregory Ballantine Date: Wed, 20 Aug 2025 23:17:38 -0400 Subject: [PATCH] Changing woodpecker config to create the DB right before tests --- .woodpecker.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 2ebcd1c..0b0f3f2 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -7,6 +7,7 @@ steps: - gem install rake - bundle config set --local path "vendor/bundle" - bundle install + - RACK_ENV=testing rake db:migrate test_ruby34: image: ruby:3.4 @@ -15,7 +16,6 @@ steps: commands: - gem install rake - bundle config set --local path "vendor/bundle" - - rake db:migrate - rake test:unit group: tests