Skip to content

Commit 808cc47

Browse files
committed
fix: no ci code coverage
1 parent 02893fd commit 808cc47

1 file changed

Lines changed: 17 additions & 3 deletions

File tree

phpunit.xml.dist

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit
3-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4-
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
5+
bootstrap="vendor/autoload.php"
6+
colors="true"
7+
columns="max"
8+
displayDetailsOnTestsThatTriggerWarnings="true"
9+
failOnDeprecation="true"
10+
failOnWarning="true"
11+
failOnNotice="true"
12+
failOnRisky="true"
513
>
614
<testsuites>
715
<testsuite name="feature">
816
<directory>tests/Feature</directory>
917
</testsuite>
1018
</testsuites>
1119

20+
<source>
21+
<include>
22+
<directory>src</directory>
23+
</include>
24+
</source>
25+
1226
<php>
1327
<env name="TYPESENSE_NODE_HOST" value="localhost" />
1428
<env name="TYPESENSE_NODE_PORT" value="8108" />
1529
<env name="TYPESENSE_NODE_PROTOCOL" value="http" />
1630
<env name="TYPESENSE_API_KEY" value="xyz" />
1731
</php>
18-
</phpunit>
32+
</phpunit>

0 commit comments

Comments
 (0)