Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
add phpcs to travis
  • Loading branch information
ceeram committed Nov 2, 2012
1 parent 093275a commit 0dfe373
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .travis.yml
Expand Up @@ -10,6 +10,16 @@ env:
- DB=pgsql
- DB=sqlite

matrix:
allow_failures:
- php: 5.4
env:
- PHPCS=1
include:
- php: 5.4
env:
- PHPCS=1

before_script:
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test;'; fi"
- sh -c "if [ '$DB' = 'mysql' ]; then mysql -e 'CREATE DATABASE cakephp_test2;'; fi"
Expand All @@ -23,6 +33,9 @@ before_script:
server.listen(80, 'localhost');
console.log('TCP server listening on port 80 at localhost.');" > app/tmp/socket.js
- sudo node ./app/tmp/socket.js &
- pear channel-discover pear.cakephp.org
- pear install --alldeps cakephp/CakePHP_CodeSniffer
- phpenv rehash
- set +H
- echo "<?php
class DATABASE_CONFIG {
Expand Down Expand Up @@ -105,7 +118,7 @@ before_script:
}" > app/Config/database.php

script:
- ./lib/Cake/Console/cake test core AllTests --stderr
- sh -c "if [ '$PHPCS' != '1' ]; then ./lib/Cake/Console/cake test core AllTests --stderr; else phpcs --standard=CakePHP ./lib/Cake; fi"

notifications:
email: false

0 comments on commit 0dfe373

Please sign in to comment.