We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b364400 commit e530d4bCopy full SHA for e530d4b
Guardfile
@@ -15,7 +15,9 @@ guard :minitest, {
15
} do
16
# Our project watchers.
17
if ENV['FOCUS_TEST']
18
- watch(%r{.*}) { ENV['FOCUS_TEST'] } if ENV['FOCUS_TEST']
+ ENV['FOCUS_TEST'].split(',').map(&:strip).each do |file|
19
+ watch(%r{.*}) { file }
20
+ end
21
else
22
watch(%r{^test/cases/\w+_test_sqlserver.rb$})
23
watch(%r{^lib/active_record/connection_adapters/sqlserver/([^/]+)\.rb$}) { |m| "test/cases/#{m[1]}_test_sqlserver.rb" }
0 commit comments