Merge pull request #485 from enovance/change_rspec_formatter

Replace the formatter in the rspec SPEC_OPTS
This commit is contained in:
Sebastien Badia 2014-06-03 13:39:41 +02:00
commit 7d8333c937
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
language: ruby
script: "bundle exec rake test COV=y SPEC_OPTS='--format n --color --backtrace'"
script: "bundle exec rake test COV=y SPEC_OPTS='--format documentation --color --backtrace'"
rvm:
- 1.9.3
- 2.0.0

View File

@ -1,10 +1,14 @@
source 'https://rubygems.org'
gem 'puppetlabs_spec_helper'
gem 'puppet-lint'
gem 'puppet-lint', '~> 0.3.2'
gem 'json'
gem 'rspec-puppet', :git => 'https://github.com/rodjek/rspec-puppet.git'
gem 'rake'
# rspec-puppet fetch the latest rspec (3.0.0)
# this version is a bit incompat. with older specs...
# http://myronmars.to/n/dev-blog/2014/05/notable-changes-in-rspec-3
gem 'rspec', '2.14.1'
gem 'rake', '10.1.1'
gem 'puppet-syntax'
if puppetversion = ENV['PUPPET_GEM_VERSION']