1
0
Fork 0
mirror of https://github.com/haml/haml.git synced 2022-11-09 12:33:31 -05:00

Drop duplicated :test task

in favor of 417a48bb59
This commit is contained in:
Takashi Kokubun 2017-03-28 21:45:30 +09:00
parent 1fb5658c5d
commit a04bba43c1

View file

@ -20,17 +20,6 @@ task :benchmark do
sh "ruby benchmark.rb #{ENV['TIMES']}"
end
Rake::TestTask.new do |t|
t.libs << 'lib' << 'test'
# haml-spec tests are explicitly added after other tests so they don't
# interfere with the Haml loading process which can cause test failures
files = Dir["test/*_test.rb"]
files.concat(Dir['test/haml-spec/*_test.rb'])
t.test_files = files
t.warning = true
t.verbose = true
end
task :set_coverage_env do
ENV["COVERAGE"] = "true"
end