Change code coverage system to CodeClimate

This commit is contained in:
bzick 2014-07-29 23:33:28 +04:00
parent 342078b45e
commit e357dbe5f3
4 changed files with 3 additions and 4 deletions

View File

@ -13,4 +13,4 @@ script:
- phpunit
after_script:
- php vendor/bin/coveralls
- CODECLIMATE_REPO_TOKEN=6739bff0f9a6eb7eaa5cfd1b086b55a3413aff24991d793b5b12da91c3803471 ./vendor/bin/test-reporter

View File

@ -16,7 +16,7 @@
},
"require-dev": {
"phpunit/phpunit": "*",
"satooshi/php-coveralls": "dev-master"
"codeclimate/php-test-reporter": "dev-master"
},
"autoload": {
"psr-0": { "Fenom\\": "src/" },

View File

@ -11,7 +11,7 @@ instead of `ematch` for frontend search expression input may be way more conveni
Special pattern symbols:
* `?` — match one or zero unknown characters. `?at` matches `Cat`, `cat`, `Bat` or `bat`, `but` not `at`.
* `?` — match one or zero unknown characters. `?at` matches `Cat`, `cat`, `Bat` or `bat` but not `at`.
* `*` — match any number of unknown characters. `Law*` matches `Law`, `Laws`, or `Lawyer`.
* `[characters]` — Match a character as part of a group of characters. `[CB]at` matches `Cat` or `Bat` but not `cat`, `rat` or `bat`.
* `\` - Escape character. `Law\*` will only match `Law*`

View File

@ -39,6 +39,5 @@
</filter>
<logging>
<log type="coverage-clover" target="build/logs/clover.xml"/>
<!--<log type="coverage-php" target="build/cov/coverage.cov"/>-->
</logging>
</phpunit>