From 08896deb328628cf4c0f244d07848cd68f671068 Mon Sep 17 00:00:00 2001 From: Jeremy Daer Date: Mon, 8 Dec 2025 23:33:46 -0800 Subject: [PATCH] bin/ci: run OSS suite in SAAS mode for full coverage (#2029) --- config/ci.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/config/ci.rb b/config/ci.rb index 053fe2682..a99248a93 100644 --- a/config/ci.rb +++ b/config/ci.rb @@ -19,6 +19,8 @@ CI.run do if Fizzy.saas? step "Tests: SaaS", "#{SAAS_ENV} bin/rails test" step "Tests: SaaS System", "#{SAAS_ENV} #{SYSTEM_TEST_ENV} bin/rails test:system" + step "Tests: OSS", "#{OSS_ENV} bin/rails test" + step "Tests: OSS System", "#{OSS_ENV} #{SYSTEM_TEST_ENV} bin/rails test:system" else step "Tests: SQLite", "#{OSS_ENV} bin/rails test" step "Tests: SQLite System", "#{OSS_ENV} #{SYSTEM_TEST_ENV} bin/rails test:system"