Skip to content

Commit

Permalink
adding travis config for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
dogmatic69 committed Jun 20, 2012
1 parent 7b68c5b commit d47607a
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: php

php:
- 5.3

env:
- CAKE_VERSION=2.2

before_script:
- git clone --depth 1 git://github.com/cakephp/cakephp ../cakephp && cd ../cakephp && git checkout $CAKE_VERSION

script:
- ./lib/Cake/Console/cake test CakePdf AllCakePdf
- for plugin in `ls ./cakephp/app/Core`; do ./lib/Cake/Console/cake test -app ./infinitas $plugin 'All' $plugin 'Tests'; done

notifications:
email: false

0 comments on commit d47607a

Please sign in to comment.