Skip to content

Commit 082dcba

Browse files
authored
Merge pull request #905 from puppetlabs/modulesync_stuff
mocha version update
2 parents 712158f + a491551 commit 082dcba

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.travis.yml

+3
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ sudo: false
44
language: ruby
55
cache: bundler
66
script: "bundle exec rake validate lint spec"
7+
#Inserting below due to the following issue: https://github.com/travis-ci/travis-ci/issues/3531#issuecomment-88311203
8+
before_install:
9+
- gem update bundler
710
matrix:
811
fast_finish: true
912
include:

Gemfile

+2
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ group :development, :unit_tests do
2323
gem 'puppetlabs_spec_helper', '>= 1.2.1'
2424
gem 'rspec-puppet', '>= 2.3.2'
2525
gem 'rspec-puppet-facts'
26+
gem 'mocha', '< 1.2.0'
2627
gem 'simplecov'
2728
gem 'parallel_tests', '< 2.10.0' if RUBY_VERSION < '2.0.0'
2829
gem 'parallel_tests' if RUBY_VERSION >= '2.0.0'
@@ -35,6 +36,7 @@ end
3536
group :system_tests do
3637
gem 'beaker', *location_from_env('BEAKER_VERSION', []) if RUBY_VERSION >= '2.3.0'
3738
gem 'beaker', *location_from_env('BEAKER_VERSION', ['< 3']) if RUBY_VERSION < '2.3.0'
39+
gem 'beaker-pe' if RUBY_VERSION >= '2.3.0'
3840
gem 'beaker-rspec', *location_from_env('BEAKER_RSPEC_VERSION', ['>= 3.4'])
3941
gem 'serverspec'
4042
gem 'beaker-puppet_install_helper'

0 commit comments

Comments
 (0)