This repository has been archived by the owner on Mar 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a6be508
commit 453f9ee
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,17 @@ | ||
# the list of docker images to run against | ||
// the list of docker images to run against | ||
images=" | ||
vectorface/php5.4 | ||
vectorface/php5.5 | ||
vectorface/php5.6 | ||
vectorface/hhvm"; | ||
|
||
|
||
# a flag indicating whether to run the syntax check | ||
// a flag indicating whether to run the syntax check | ||
checkSyntax="true"; | ||
# the syntax command to execute | ||
// the syntax command to execute | ||
syntaxCommand="find /opt/source -type f -name \"*.php\" ! -path \"*/vendor/*\" -print0 | xargs -0 -n 1 -P 8 php -l | grep -v 'No syntax errors'" | ||
|
||
# a flag indicating whether to run the phpunit test suite | ||
// a flag indicating whether to run the phpunit test suite | ||
runTests="true"; | ||
# the phpunit command to execute | ||
// the phpunit command to execute | ||
unitTestsCommand="/opt/source/vendor/bin/phpunit" |