Skip to content
This repository has been archived by the owner on Mar 8, 2023. It is now read-only.

Commit

Permalink
Merge pull request #80 from echocat/develop
Browse files Browse the repository at this point in the history
ignore vendor/ dir for travis ci
  • Loading branch information
dwerder committed Jun 24, 2016
2 parents 3a076a7 + 8911df0 commit 79416a1
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
*.gem
*.rbc
vendor/
/.config
/coverage/
/InstalledFiles
Expand Down
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
sudo: false
language: ruby
cache: bundler
env: BUNDLE_PATH=.bundle
bundler_args: --without system_tests
before_install: rm Gemfile.lock || true
script: bundle exec rake validate lint spec
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ PuppetLint.configuration.send('disable_class_inherits_from_params_class')
PuppetLint.configuration.send('disable_class_parameter_defaults')
PuppetLint.configuration.send('disable_documentation')
PuppetLint.configuration.send('disable_single_quote_string_with_variables')
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"]
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp", "vendor/**/*.pp"]

desc "Validate manifests, templates, and ruby files in lib."
task :validate do
Expand Down

0 comments on commit 79416a1

Please sign in to comment.