Travis: Don't test vendor PHP files

pico-3.0-alpha
Daniel Rudolf 10 years ago
parent b198ad48c6
commit d503cea954
  1. 2
      .travis.yml

@ -14,7 +14,7 @@ matrix:
fast-finish: true fast-finish: true
script: script:
- find . -type f -name '*.php' -print0 | xargs -0 -I file php -l file > /dev/null - find . -not \( -path './vendor' -prune \) -type f -name '*.php' -print0 | xargs -0 -I file php -l file > /dev/null
before_deploy: before_deploy:
- composer install - composer install

Loading…
Cancel
Save