Skip to content

Commit 8911df0

Browse files
committed
ignore vendor/ dir for travis ci
1 parent e4b1aa4 commit 8911df0

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
*.gem
22
*.rbc
3+
vendor/
34
/.config
45
/coverage/
56
/InstalledFiles

.travis.yml

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
sudo: false
33
language: ruby
44
cache: bundler
5-
env: BUNDLE_PATH=.bundle
65
bundler_args: --without system_tests
76
before_install: rm Gemfile.lock || true
87
script: bundle exec rake validate lint spec

Rakefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ PuppetLint.configuration.send('disable_class_inherits_from_params_class')
99
PuppetLint.configuration.send('disable_class_parameter_defaults')
1010
PuppetLint.configuration.send('disable_documentation')
1111
PuppetLint.configuration.send('disable_single_quote_string_with_variables')
12-
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp"]
12+
PuppetLint.configuration.ignore_paths = ["spec/**/*.pp", "pkg/**/*.pp", "vendor/**/*.pp"]
1313

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

0 commit comments

Comments
 (0)