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 2b193fa commit 0aa7dd3Copy full SHA for 0aa7dd3
Rakefile
@@ -2,7 +2,7 @@
2
3
require 'rake/testtask'
4
5
-FREAKY_TEST_TYPES = %w[broken scale state].freeze
+SLUGGISH_TEST_TYPES = %w[broken scale state].freeze
6
7
task default: :test
8
@@ -13,11 +13,11 @@ Rake::TestTask.new(:test) do |t|
13
t.test_files = if ARGV.size > 1
14
ARGV[1..]
15
else
16
- Dir['test/**/test_*.rb'].grep_v(/test_against_cluster_(#{FREAKY_TEST_TYPES.join('|')})/)
+ Dir['test/**/test_*.rb'].grep_v(/test_against_cluster_(#{SLUGGISH_TEST_TYPES.join('|')})/)
17
end
18
19
20
-FREAKY_TEST_TYPES.each do |type|
+SLUGGISH_TEST_TYPES.each do |type|
21
Rake::TestTask.new("test_cluster_#{type}".to_sym) do |t|
22
t.libs << :lib
23
t.libs << :test
0 commit comments