File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change 20
20
- validation/frameworks
21
21
22
22
before_script :
23
+ - composer install
23
24
- set -e # Stop on first error.
24
25
- phpenv config-rm xdebug.ini
25
26
- 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
@@ -29,9 +30,9 @@ script:
29
30
- composer validate
30
31
- |
31
32
if [[ $VALIDATION = true ]]; then
32
- phpunit --testsuite validation
33
+ ./vendor/bin/ phpunit --testsuite validation
33
34
else
34
- phpunit --testsuite invariants
35
- phpunit --testsuite grammar
36
- phpunit --testsuite api
35
+ ./vendor/bin/ phpunit --testsuite invariants
36
+ ./vendor/bin/ phpunit --testsuite grammar
37
+ ./vendor/bin/ phpunit --testsuite api
37
38
fi
You can’t perform that action at this time.
0 commit comments