Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/gallery.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Paroz <github@oparoz.com>2015-08-03 18:45:43 +0300
committerOlivier Paroz <github@oparoz.com>2015-08-03 18:45:43 +0300
commit97182293e65eda1dabc41ca5420e40a7e7908512 (patch)
tree8a30a7622a01e530873cbaeb412faf3ca4060ab6 /.travis.yml
parent3db003dcb0c388b897c26d910b0f9584f43f480f (diff)
Faster PHP lint
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 38d5107e..73d1d41c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -30,7 +30,7 @@ before_install:
script:
# Test lint
- cd apps/$APP_NAME
- - find . -name \*.php -exec php -l "{}" \;
+ - find . -name \*.php -print0 | xargs -0 -n 1 -P 4 php -l
# Run phpunit tests
- phpunit -c phpunit.xml