From d2e07935981d565187409738f3cca4aad721045b Mon Sep 17 00:00:00 2001 From: Raissa North Date: Thu, 18 Jan 2018 09:38:38 +1300 Subject: [PATCH] FIX Update travis.yml to use module's code sniffer rule set --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 93f4e6c..1ce0f6e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -27,7 +27,7 @@ before_script: script: - if [[ $PHPUNIT_TEST ]]; then vendor/bin/phpunit; fi - if [[ $PHPUNIT_COVERAGE_TEST ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi - - if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs --standard=vendor/silverstripe/framework/phpcs.xml.dist src tests; fi + - if [[ $PHPCS_TEST ]]; then vendor/bin/phpcs src tests; fi after_success: - if [[ $PHPUNIT_COVERAGE_TEST ]]; then bash <(curl -s https://codecov.io/bash) -f coverage.xml; fi