mirror of
https://github.com/fenom-template/fenom.git
synced 2023-08-10 21:13:07 +03:00
Change code coverage system to CodeClimate
This commit is contained in:
parent
342078b45e
commit
e357dbe5f3
@ -13,4 +13,4 @@ script:
|
|||||||
- phpunit
|
- phpunit
|
||||||
|
|
||||||
after_script:
|
after_script:
|
||||||
- php vendor/bin/coveralls
|
- CODECLIMATE_REPO_TOKEN=6739bff0f9a6eb7eaa5cfd1b086b55a3413aff24991d793b5b12da91c3803471 ./vendor/bin/test-reporter
|
@ -16,7 +16,7 @@
|
|||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"phpunit/phpunit": "*",
|
"phpunit/phpunit": "*",
|
||||||
"satooshi/php-coveralls": "dev-master"
|
"codeclimate/php-test-reporter": "dev-master"
|
||||||
},
|
},
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-0": { "Fenom\\": "src/" },
|
"psr-0": { "Fenom\\": "src/" },
|
||||||
|
@ -11,7 +11,7 @@ instead of `ematch` for frontend search expression input may be way more conveni
|
|||||||
|
|
||||||
Special pattern symbols:
|
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`.
|
* `*` — 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`.
|
* `[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*`
|
* `\` - Escape character. `Law\*` will only match `Law*`
|
||||||
|
@ -39,6 +39,5 @@
|
|||||||
</filter>
|
</filter>
|
||||||
<logging>
|
<logging>
|
||||||
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
<log type="coverage-clover" target="build/logs/clover.xml"/>
|
||||||
<!--<log type="coverage-php" target="build/cov/coverage.cov"/>-->
|
|
||||||
</logging>
|
</logging>
|
||||||
</phpunit>
|
</phpunit>
|
Loading…
Reference in New Issue
Block a user