summaryrefslogtreecommitdiffstats
path: root/Rakefile
diff options
context:
space:
mode:
authorMatt Robinson <matt@puppetlabs.com>2010-06-07 11:56:39 -0700
committerMarkus Roberts <Markus@reality.com>2010-06-24 16:12:00 -0700
commit117e6b6145cce12d99a7cc08f71e9a99c96fd4ff (patch)
tree6a12db6db02c4fdccdf7028ea5b7f5ea3958ce83 /Rakefile
parenta7e4fe8dbc3fc8d3bec5294cf68c69febb9194eb (diff)
downloadpuppet-117e6b6145cce12d99a7cc08f71e9a99c96fd4ff.tar.gz
puppet-117e6b6145cce12d99a7cc08f71e9a99c96fd4ff.tar.xz
puppet-117e6b6145cce12d99a7cc08f71e9a99c96fd4ff.zip
maint: Have 'rake spec' output in color
Ideally it would be nice if the rake task used personalized RSpec settings on a per user basis, but until someone figures that out color would be nice Signed-off-by: Matt Robinson <matt@puppetlabs.com>
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index a1693a9d4..8e21cebd9 100644
--- a/Rakefile
+++ b/Rakefile
@@ -43,7 +43,7 @@ desc "Create the tarball and the gem - use when releasing"
task :puppetpackages => [:create_gem, :package]
Spec::Rake::SpecTask.new do |t|
- t.spec_opts = ['--format','s', '--loadby','mtime']
+ t.spec_opts = ['--format','s', '--loadby','mtime','--color']
t.pattern ='spec/{unit,integration}/**/*.rb'
t.fail_on_error = false
end