Restyled Miscellaneous Billing Options HCFA with help file (#1713)
[openemr.git] / vendor / phpunit / php-code-coverage / .travis.yml
blob96c63689bf4551c3d8ca1bb7893a01062b94da20
1 language: php
3 php:
4   - 5.6
5   - 7.0
6   - 7.0snapshot
7   - 7.1
8   - 7.1snapshot
9   - master
11 env:
12   matrix:
13     - DRIVER="xdebug"
14     - DRIVER="phpdbg"
16 matrix:
17   allow_failures:
18     - php: master
19   fast_finish: true
20   exclude:
21     - php: 5.6
22       env: DRIVER="phpdbg"
24 sudo: false
26 before_install:
27   - composer self-update
28   - composer clear-cache
30 install:
31   - travis_retry composer update --no-interaction --no-ansi --no-progress --no-suggest --optimize-autoloader --prefer-stable
33 script:
34   - if [[ "$DRIVER" = 'phpdbg' ]]; then phpdbg -qrr vendor/bin/phpunit --coverage-clover=coverage.xml; fi
35   - if [[ "$DRIVER" = 'xdebug' ]]; then vendor/bin/phpunit --coverage-clover=coverage.xml; fi
37 after_success:
38   - bash <(curl -s https://codecov.io/bash)
40 notifications:
41   email: false