-
Notifications
You must be signed in to change notification settings - Fork 33
/
Rakefile
45 lines (37 loc) · 1.3 KB
/
Rakefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#--
# Cloud Foundry
# Copyright (c) [2009-2014] Pivotal Software, Inc. All Rights Reserved.
#
# This product is licensed to you under the Apache License, Version 2.0 (the "License").
# You may not use this product except in compliance with the License.
#
# This product includes a number of subcomponents with
# separate copyright notices and license terms. Your use of these
# subcomponents is subject to the terms and conditions of the
# subcomponent's license, as noted in the LICENSE file.
#++
require "rspec/core/rake_task"
require "bundler/gem_tasks" # only available in bundler >= 1.0.15
require "ci/reporter/rake/rspec"
ENV['CI_REPORTS'] = File.expand_path("spec_reports")
COV_REPORTS = File.expand_path("coverage")
task :default => [:test]
task :tests => [:test]
task :spec => [:test]
RSpec::Core::RakeTask.new("test") do |t|
t.rspec_opts = ["--format", "documentation", "--colour"]
t.pattern = "spec/**/*_spec.rb"
end
task :ci => [:pre_coverage, :rcov_reports, "ci:setup:rspec", :test]
task :cov => [:pre_coverage, :test, :view_coverage]
task :coverage => [:pre_coverage, :test]
task :pre_coverage do
rm_rf COV_REPORTS
ENV['COVERAGE'] = "exclude-spec exclude-vendor"
end
task :rcov_reports do
ENV['COVERAGE'] += " rcov"
end
task :view_coverage do
`firefox #{File.join(COV_REPORTS, 'index.html')}`
end