Skip to content

Commit

Permalink
Merge pull request #279 from DavidS/optional-gem-tasks
Browse files Browse the repository at this point in the history
(maint) load rake tasks from optional libraries
  • Loading branch information
tphoney committed Feb 19, 2019
2 parents 33247c8 + 30957d9 commit 90f4c0e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions lib/puppetlabs_spec_helper/rake_tasks.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,24 @@
# ignore
end

begin
require 'puppet_blacksmith/rake_tasks'
rescue LoadError
# ignore
end

begin
require 'github_changelog_generator/task'
rescue LoadError
# ignore
end

begin
require 'puppet-strings/tasks'
rescue LoadError
# ignore
end

parallel_tests_loaded = false
begin
require 'parallel_tests'
Expand Down

0 comments on commit 90f4c0e

Please sign in to comment.