Skip to content

Commit

Permalink
This is to pin ruby version to parallel_tests
Browse files Browse the repository at this point in the history
  • Loading branch information
pmcmaw committed Oct 25, 2016
1 parent abb2c51 commit 3742bd6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .sync.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@
- 'spec/fixtures/manifests/site.pp'
- 'spec/fixtures/modules/*'

spec/spec_helper.rb:
allow_deprecations: true
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,6 @@ matrix:
- rvm: 2.1.5
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 3.0" FUTURE_PARSER="yes"
- rvm: 2.1.5
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 3.7.0" FUTURE_PARSER="yes"
- rvm: 2.1.5
bundler_args: --without system_tests
env: PUPPET_GEM_VERSION="~> 3.0"
Expand Down
3 changes: 2 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ group :development, :unit_tests do
gem 'mocha', '< 1.2.0'
gem 'rspec-puppet-facts'
gem 'simplecov'
gem 'parallel_tests'
gem 'parallel_tests', '< 2.10.0' if RUBY_VERSION < '2.0.0'
gem 'parallel_tests' if RUBY_VERSION >= '2.0.0'
gem 'rubocop', '0.41.2' if RUBY_VERSION < '2.0.0'
gem 'rubocop' if RUBY_VERSION >= '2.0.0'
gem 'rubocop-rspec', '~> 1.6' if RUBY_VERSION >= '2.3.0'
Expand Down

0 comments on commit 3742bd6

Please sign in to comment.