Skip to content

Commit 6419294

Browse files
TomasVotrubajaapio
authored andcommitted
gitattributes and phpunit - cleanup
1 parent fc43115 commit 6419294

File tree

2 files changed

+11
-18
lines changed

2 files changed

+11
-18
lines changed

.gitattributes

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
/.gitattributes export-ignore
2-
/.gitignore export-ignore
3-
/.scrutinizer.yml export-ignore
4-
/.travis.yml export-ignore
1+
.gitattributes export-ignore
2+
.gitignore export-ignore
3+
.scrutinizer.yml export-ignore
4+
.travis.yml export-ignore
55
/examples/ export-ignore
66
/phpmd.xml.dist export-ignore
77
/phpunit.xml.dist export-ignore

phpunit.xml.dist

Lines changed: 7 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,24 @@
11
<?xml version="1.0" encoding="utf-8"?>
22

3-
<phpunit
4-
colors="true"
5-
checkForUnintentionallyCoveredCode="true"
3+
<phpunit
4+
colors="true"
65
beStrictAboutOutputDuringTests="true"
76
forceCoversAnnotation="true"
87
verbose="true"
98
bootstrap="vendor/autoload.php"
109
>
11-
<testsuites>
12-
<testsuite name="unit">
10+
<testsuite>
1311
<directory>./tests/unit</directory>
14-
</testsuite>
15-
</testsuites>
12+
</testsuite>
1613
<filter>
1714
<whitelist>
1815
<directory suffix=".php">./src/</directory>
1916
</whitelist>
20-
<blacklist>
21-
<directory>./examples/</directory>
22-
<directory>./vendor/</directory>
23-
</blacklist>
2417
</filter>
2518
<listeners>
2619
<listener
27-
class="Mockery\Adapter\Phpunit\TestListener"
28-
file="vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php"
29-
/>
20+
class="Mockery\Adapter\Phpunit\TestListener"
21+
file="vendor/mockery/mockery/library/Mockery/Adapter/Phpunit/TestListener.php"
22+
/>
3023
</listeners>
3124
</phpunit>

0 commit comments

Comments
 (0)