File tree Expand file tree Collapse file tree 6 files changed +18
-3
lines changed Expand file tree Collapse file tree 6 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 55 include_todos : true
66 selected_profile : false
77" .travis.yml " :
8+ global_env :
9+ - HONEYCOMB_WRITEKEY="7f3c63a70eecc61d635917de46bea4e6",HONEYCOMB_DATASET="litmus tests"
810 deploy_to_forge :
911 enabled : false
1012 simplecov : true
2224 slack :
2325 secure : Yqv+S1Bwz19bor4xu3v7i5rLPzQuwTSZhO5wjsrX+jhKDN5/+e7e53x/v3Onjdrn9rjwFAxwzciAte0MO96xLFjyzWyUSziGur8/v3TcbRnnVQMOnIEj0HfmyLbx1cpxGK9V8MPsWQVAoHCklTtZIsRjMw0PcD8+aVKVF3NcBK4=
2426appveyor.yml :
27+ environment :
28+ HONEYCOMB_WRITEKEY : 7f3c63a70eecc61d635917de46bea4e6
29+ HONEYCOMB_DATASET : litmus tests
2530 simplecov : true
2631 install_post :
2732 - >-
Original file line number Diff line number Diff line change @@ -10,14 +10,18 @@ before_install:
1010 - rm -f Gemfile.lock
1111 - " # Update system gems if requested. This is useful to temporarily workaround troubles in the test runner"
1212 - " # See https://github.com/puppetlabs/pdk-templates/commit/705154d5c437796b821691b707156e1b056d244f for an example of how this was used"
13- - ' [ -z "$RUBYGEMS_VERSION" ] || gem update --system $RUBYGEMS_VERSION'
13+ - " # Ignore exit code of SIGPIPE'd yes to not fail with shell's pipefail set"
14+ - ' [ -z "$RUBYGEMS_VERSION" ] || (yes || true) | gem update --system $RUBYGEMS_VERSION'
1415 - gem --version
1516 - bundle -v
1617script :
1718 - ' SIMPLECOV=yes bundle exec rake $CHECK'
1819bundler_args : --without system_tests
1920rvm :
2021 - 2.5.3
22+ env :
23+ global :
24+ - HONEYCOMB_WRITEKEY="7f3c63a70eecc61d635917de46bea4e6",HONEYCOMB_DATASET="litmus tests"
2125stages :
2226 - static
2327 - spec
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
13require 'puppet_litmus/rake_tasks' if Bundler . rubygems . find_name ( 'puppet_litmus' ) . any?
24require 'puppetlabs_spec_helper/rake_tasks'
35require 'puppet-syntax/tasks/puppet-syntax'
Original file line number Diff line number Diff line change 1414 - ' mkdir C:\ProgramData\PuppetLabs\hiera && exit 0'
1515 - ' mkdir C:\ProgramData\PuppetLabs\puppet\var && exit 0'
1616environment :
17+ HONEYCOMB_WRITEKEY : 7f3c63a70eecc61d635917de46bea4e6
18+ HONEYCOMB_DATASET : litmus tests
1719 SIMPLECOV : yes
1820 matrix :
1921 -
Original file line number Diff line number Diff line change 7777 "version_requirement" : " >= 5.5.0 < 7.0.0"
7878 }
7979 ],
80- "pdk-version" : " 1.15 .0" ,
80+ "pdk-version" : " 1.16 .0" ,
8181 "template-url" : " https://github.com/puppetlabs/pdk-templates#master" ,
82- "template-ref" : " heads/master-0-gcaed9d7 "
82+ "template-ref" : " heads/master-0-g5d52853 "
8383}
Original file line number Diff line number Diff line change 1+ # frozen_string_literal: true
2+
13require 'puppetlabs_spec_helper/module_spec_helper'
24require 'rspec-puppet-facts'
35
You can’t perform that action at this time.
0 commit comments