gong023 / phpunityo
There is no license information available for the latest version (0.1.0) of this package.
0.1.0
2015-01-12 18:04 UTC
Requires
- php: >=5.4.0
- black/yo-php: 0.5.0
- gong023/tiny_config_php: 0.1.*
Requires (Dev)
- fabpot/php-cs-fixer: 1.*
- gong023/assert_chain: dev-master
- mockery/mockery: 0.9.*
- phpunit/phpunit: 4.4.*
This package is auto-updated.
Last update: 2024-10-27 21:01:02 UTC
README
Send Yo when PHPUnit successes or fails.
You can use at travis.
How to use
1. Set up Yo
Get api token from http://dev.justyo.co/, and export it.
export YO_API_TOKEN="xxxx"
If you want to use PHPUnityo at travis, encrypt token.
gem install travis # if you need
travis encrypt -r your/repository YO_API_TOKEN=xxxx
And add encrypted token to .travis.yml
env: global: YO_API_TOKEN='yourencryptedtoken'
2. Setup PHPUnityo
Install PHPUnityo.
composer require --dev gong023/phpunityo:0.1.*
Add PHPUnit listener setting to your phpunit.xml.dist.
<listeners> <listener class="PHPUnit_Yo" file="vendor/gong023/src/PHPUnit_Yo.php"> <arguments> <string name="sendUser">Your Name</string> <string name="onSuccess">false</string> <string name="onFailure">true</string> </arguments> </listener> </listeners>
That's all.
If you turn onSuccess
on at phpunit.xml.dist, PHPUnityo sends Yo only when test successes.
If you turn onFailure
on at phpunit.xml.dist, PHPUnityo sends Yo only when test fails.
At travis-ci.org, PHPUnityo sends Yo with build URL.