-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathphpunit.xml
More file actions
18 lines (18 loc) · 785 Bytes
/
Copy pathphpunit.xml
File metadata and controls
18 lines (18 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://schema.phpunit.de/4.5/phpunit.xsd"
bootstrap="tests/bootstrap.php" colors="true" beStrictAboutTestsThatDoNotTestAnything="false">
<testsuites>
<testsuite name="Unit">
<directory>tests/Unit</directory>
</testsuite>
<!-- <testsuite name="Integration">
<directory>tests/Integration</directory>
<exclude>tests/Integration/Cards</exclude>
</testsuite> -->
</testsuites>
<php>
<env name="DB_NAME_PREFIX" value="innovation_test_"/>
<env name="DB_USERNAME" value="root"/>
<env name="DB_HOST" value="127.0.0.1" />
<env name="DB_PORT" value="3306" />
</php>
</phpunit>