~oly/yiiframework/yii-import

« back to all changes in this revision

Viewing changes to .travis.yml

  • Committer: Carsten Brandt
  • Date: 2016-12-05 15:32:03 UTC
  • mto: This revision was merged to the branch mainline in revision 3936.
  • Revision ID: git-v1:853bc8b2f585584a7f51ef4d1b572ea590b4fa88
use our own phpunit intead of travis'

fixed php5.6 build warnings

Show diffs side-by-side

added added

removed removed

Lines of Context:
36
36
  - redis-server
37
37
  - memcached
38
38
 
 
39
# cache vendor dirs
 
40
cache:
 
41
  directories:
 
42
    - vendor
 
43
    - $HOME/.composer/cache
 
44
 
39
45
install:
40
46
  - travis_retry composer self-update && composer --version
 
47
  - travis_retry composer update --prefer-dist --no-interaction
41
48
 
42
49
before_script:
43
50
  - ./tests/travis/mysql-setup.sh
44
51
  - ./tests/travis/postgresql-setup.sh
45
52
  - ./tests/travis/memcache-setup.sh
46
 
  - cd tests
47
 
 
48
 
script: phpunit --verbose --colors --no-globals-backup --exclude-group mssql,oci framework
 
53
 
 
54
script: cd tests && ../vendor/bin/phpunit --verbose --colors --no-globals-backup --exclude-group mssql,oci framework
 
55