Skip to content

Commit

Permalink
travis: run coding style check only for src & test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
hrach committed Jan 29, 2016
1 parent fffa90b commit 4bd3d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ before_script:

script:
- ./tests/run.sh -s $NTESTER_FLAGS ./tests/cases
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then vendor/bin/parallel-lint src tests; fi
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then vendor/bin/phpcs --standard=ruleset.xml --tab-width=4 -sp src tests; fi
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then vendor/bin/parallel-lint src tests/cases; fi
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then vendor/bin/phpcs --standard=ruleset.xml --tab-width=4 -sp src tests/cases; fi

after_script:
- if [ "$TRAVIS_PHP_VERSION" == "7.0" ]; then
Expand Down

0 comments on commit 4bd3d98

Please sign in to comment.