Skip to content

Commit b6bc65b

Browse files
authored
Merge pull request #45 from abacaphiliac/add-phpunit-config
add phpunit config
2 parents bb5b793 + 9579ba4 commit b6bc65b

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

circle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ machine:
44

55
test:
66
override:
7-
- vendor/bin/phpunit tests
7+
- vendor/bin/phpunit tests --coverage-text

phpunit.xml.dist

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<phpunit bootstrap="vendor/autoload.php">
2+
<testsuites>
3+
<testsuite>
4+
<directory>tests</directory>
5+
</testsuite>
6+
</testsuites>
7+
<filter>
8+
<whitelist>
9+
<directory suffix=".php">src</directory>
10+
</whitelist>
11+
</filter>
12+
</phpunit>

0 commit comments

Comments
 (0)