From 0ddb5699ef89f729bae6c4ee224f57d07cae6b07 Mon Sep 17 00:00:00 2001 From: meatball Date: Wed, 31 Dec 2025 19:28:08 +0100 Subject: [PATCH] Make so the old geneator tests no longer execute --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 013376fdac..f79e6b1192 100644 --- a/Rakefile +++ b/Rakefile @@ -37,7 +37,7 @@ namespace :test do desc 'Run all development tests located in the test directory' Rake::TestTask.new :dev do |task| task.options = flags - task.pattern = 'test/**/*_test.rb' + task.pattern = FileList['test/**/*_test.rb'].exclude('test/generator/**/*') end Rake::TestTask.new :generator do |task|