From 277a45fa88315dba35264606f9f810a0fef802e9 Mon Sep 17 00:00:00 2001 From: Jorge Manrubia Date: Sun, 23 Nov 2025 07:39:19 +0100 Subject: [PATCH] Add CI step for saas tests --- config/ci.rb | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/config/ci.rb b/config/ci.rb index 5d518c21c..85b327d02 100644 --- a/config/ci.rb +++ b/config/ci.rb @@ -1,5 +1,7 @@ # Run using bin/ci +require_relative "../lib/fizzy" + CI.run do step "Setup", "bin/setup --skip-server" @@ -10,7 +12,9 @@ CI.run do step "Security: Brakeman audit", "bin/brakeman --quiet --no-pager --exit-on-warn --exit-on-error" step "Security: Gitleaks audit", "bin/gitleaks-audit" - step "Tests: Rails", "bin/rails test" + step "Tests: Fizzy", "bin/rails test" + + step "Tests: SaaS", "SAAS=1 bin/rails test:saas" if Fizzy.saas? step "Tests: System", "bin/rails test:system" if success?