We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
set -e
before_script
1 parent c8b0ed5 commit 474a255Copy full SHA for 474a255
.travis.yml
@@ -20,14 +20,13 @@ cache:
20
- validation/frameworks
21
22
before_script:
23
+ - set -e
24
- phpenv config-rm xdebug.ini
25
- if find . -name "*.php" -path "./src/*" -path "./experiments/*" -path "./tools/*" -path "./syntax-visualizer/server/src/*" -exec php -l {} 2>&1 \; | grep "syntax error, unexpected"; then exit 1; fi
26
- if find . -name "*.php" -path "./tests/*" -path "./validation/*" -maxdepth 0 --exec php -l {} 2>&1 \; | grep "syntax error, unexpected"; then exit 1; fi
27
28
script:
29
- |
- set -e
30
-
31
if [[ $VALIDATION = true ]]; then
32
phpunit --testsuite validation
33
else
0 commit comments