Skip to content

Commit

Permalink
[BUGFIX] Fix travis tests
Browse files Browse the repository at this point in the history
  • Loading branch information
NeoBlack committed Mar 25, 2016
1 parent 81c19f8 commit 3aee612
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -7,6 +7,11 @@ matrix:
env: UNIT_TESTS=yes PHP_LINT=yes
sudo: false

addons:
apt:
packages:
- parallel

cache:
directories:
- $HOME/.composer/cache
@@ -27,5 +32,5 @@ script:
if [[ "$PHP_LINT" == "yes" ]]; then
echo;
echo "Running php lint";
find . -name \*.php -not -path "./vendor/*" | php -d display_errors=stderr -l {} > /dev/null \;
find . -name \*.php -not -path "./vendor/*" | parallel --gnu php -d display_errors=stderr -l {} > /dev/null \;
fi

0 comments on commit 3aee612

Please sign in to comment.