~tcuthbert/wordpress/openstack-objectstorage

« back to all changes in this revision

Viewing changes to vendor/phpunit/php-token-stream/.travis.yml

  • Committer: Jacek Nykis
  • Date: 2015-02-11 15:35:31 UTC
  • Revision ID: jacek.nykis@canonical.com-20150211153531-hmy6zi0ov2qfkl0b
Initial commit

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
language: php
 
2
 
 
3
php:
 
4
  - 5.3.3
 
5
  - 5.3
 
6
  - 5.4
 
7
  - 5.5
 
8
  - 5.6
 
9
  - hhvm
 
10
  - hhvm-nightly
 
11
 
 
12
before_script:
 
13
  - composer self-update
 
14
  - composer install --no-interaction --prefer-source --dev
 
15
 
 
16
script:
 
17
  - ./vendor/bin/phpunit --configuration ./build/phpunit.xml
 
18
 
 
19
matrix:
 
20
  allow_failures:
 
21
    - php: hhvm
 
22
 
 
23
notifications:
 
24
  email: false
 
25
  webhooks:
 
26
    urls:
 
27
      - https://webhooks.gitter.im/e/6668f52f3dd4e3f81960
 
28
    on_success: always
 
29
    on_failure: always
 
30
    on_start: false
 
31