Skip to content

Commit 50ac80d

Browse files
committed
Consistent test ENV names with Rakefile.
1 parent 7c8cf33 commit 50ac80d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Guardfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ guard :minitest, {
1414
test_file_patterns: ["*_test.rb", "*_test_sqlserver.rb", "*_tests.rb"]
1515
} do
1616
# Our project watchers.
17-
if ENV['FOCUS_TEST']
18-
ENV['FOCUS_TEST'].split(',').map(&:strip).each do |file|
17+
if ENV['TEST_FILES']
18+
ENV['TEST_FILES'].split(',').map(&:strip).each do |file|
1919
watch(%r{.*}) { file }
2020
end
2121
else

0 commit comments

Comments
 (0)