1
0
Fork 0
mirror of https://github.com/Oreolek/kangana.git synced 2024-05-18 08:58:19 +03:00
kangana/.travis.yml
Alexander Yakovlev 63710bd167 Disabled unit tests for Travis
Unit tests need MySQL; I don't know how to configure it for Travis.
2016-11-12 19:32:34 +07:00

20 lines
803 B
YAML

language: php
php:
- "7.0"
cache:
directories:
- vendor
before_script:
- composer install --prefer-dist
- phpenv config-rm xdebug.ini
# install CodeSniffer for Kohana Coding Standards checks
# - git clone https://github.com/squizlabs/PHP_CodeSniffer.git php-codesniffer --depth=1
# Install Kohana Coding Standards
# - git clone https://github.com/kohana/coding-standards.git kohana-coding-standards --depth=1
# - cd php-codesniffer
# - scripts/phpcs --config-set installed_paths ../kohana-coding-standards
script:
- find application -name "*.php" -print0 | xargs -0 -n1 -P8 php -l | grep -v '^No syntax errors detected' ; test $? -eq 1
# - vendor/bin/phpunit -c application/tests
# - php-codesniffer/scripts/phpcs -p -s -v -n --standard=Kohana --extensions=php application