Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit bb14c3e

Browse files
committed
Adding coveralls support
1 parent 81915ff commit bb14c3e

5 files changed

+14
-3
lines changed

.coveralls.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
src_dir: .

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/bin/
2+
/build/
23
composer.lock
34
composer.phar
45
vendor/

.travis.yml

+6-2
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,14 @@ language: php
33
php:
44
- 5.5
55
- 5.4
6-
- 5.3
76

87
before_install:
98
- composer self-update
109
- composer update --prefer-dist
1110

12-
script: phpunit
11+
script:
12+
- mkdir -p build/logs
13+
- bin/phpunit
14+
15+
after_script:
16+
- bin/coveralls -v

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"psr-4": { "Smartive\\HandlebarsBundle\\": "" }
1717
},
1818
"require": {
19-
"php": ">=5.3.9",
19+
"php": ">=5.4.0",
2020
"symfony/framework-bundle": "~2.6",
2121
"symfony/finder": "~2.6",
2222
"xamin/handlebars.php": "~0.10"

phpunit.xml.dist

+5
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,11 @@
2828
</whitelist>
2929
</filter>
3030

31+
<logging>
32+
<log type="coverage-clover" target="build/logs/clover.xml"/>
33+
<log type="coverage-html" target="build/logs/coverage/"/>
34+
</logging>
35+
3136
<php>
3237
<server name="KERNEL_DIR" value="./Tests/Functional/Fixtures/app" />
3338
</php>

0 commit comments

Comments
 (0)