Skip to content

Commit

Permalink
phpdbg ではなく xdebug を使ってみる
Browse files Browse the repository at this point in the history
  • Loading branch information
nanasess committed Aug 30, 2016
1 parent 020e7ff commit d015bb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ install:
- gem install mailcatcher

before_script:
- phpenv config-rm xdebug.ini
- if [[ $PHP_SAPI != 'phpdbg' ]]; then phpenv config-rm xdebug.ini ; fi
- if [[ $PHP_SAPI = 'phpdbg' ]]; then echo "memory_limit=-1" >> ~/.phpenv/versions/$(phpenv version-name)/etc/conf.d/travis.ini ; fi
- composer self-update || true
- composer install --dev --no-interaction -o
Expand All @@ -65,7 +65,7 @@ before_script:
- mailcatcher

script:
- if [[ $PHP_SAPI = 'phpdbg' ]]; then phpdbg -qrr ./vendor/bin/phpunit --coverage-clover=coverage.clover ; fi
- if [[ $PHP_SAPI = 'phpdbg' ]]; then phpunit --coverage-clover=coverage.clover ; fi
- if [[ $PHP_SAPI != 'phpdbg' ]]; then phpunit ; fi

after_script:
Expand Down

0 comments on commit d015bb7

Please sign in to comment.