Skip to content
This repository was archived by the owner on Sep 27, 2021. It is now read-only.

Commit 2cb2c3b

Browse files
committed
Fix code coverage measurement
1 parent 10fd705 commit 2cb2c3b

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ before_script:
1010
- composer install --prefer-source --no-interaction
1111

1212
script:
13-
- php ./vendor/bin/codecept run --coverage-xml
13+
- php ./vendor/bin/codecept run unit --coverage-xml
1414

1515
after_success:
1616
- travis_retry php ./vendor/bin/php-coveralls

codeception.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@ paths:
44
data: tests/_data
55
support: tests/_support
66
envs: tests/_envs
7+
78
actor_suffix: Tester
8-
extensions:
9-
enabled:
10-
- Codeception\Extension\RunFailed
9+
10+
coverage:
11+
enabled: true
12+
whitelist:
13+
include:
14+
- src/*

0 commit comments

Comments
 (0)