-
Notifications
You must be signed in to change notification settings - Fork 56
/
phpunit.mysql.xml
60 lines (60 loc) · 2.34 KB
/
phpunit.mysql.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false"
bootstrap="vendor/autoload.php"
timeoutForSmallTests="2"
enforceTimeLimit="true"
failOnWarning="true"
failOnRisky="true"
>
<coverage>
<include>
<directory>./src/</directory>
</include>
<exclude>
<file>./src/Container/MariaDbEventStoreFactory.php</file>
<file>./src/Container/MariaDbProjectionManagerFactory.php</file>
<file>./src/PersistenceStrategy/MariaDbAggregateStreamStrategy.php</file>
<file>./src/PersistenceStrategy/MariaDbSimpleStreamStrategy.php</file>
<file>./src/PersistenceStrategy/MariaDbSingleStreamStrategy.php</file>
<file>./src/Projection/MariaDbProjectionManager.php</file>
<file>./src/MariaDbEventStore.php</file>
<file>./src/Container/PostgresEventStoreFactory.php</file>
<file>./src/Container/PostgresProjectionManagerFactory.php</file>
<file>./src/PersistenceStrategy/PostgresAggregateStreamStrategy.php</file>
<file>./src/PersistenceStrategy/PostgresSimpleStreamStrategy.php</file>
<file>./src/PersistenceStrategy/PostgresSingleStreamStrategy.php</file>
<file>./src/Projection/PostgresProjectionManager.php</file>
<file>./src/PostgresEventStore.php</file>
</exclude>
</coverage>
<testsuite name="Prooph PDO EventStore Test Suite">
<directory>./tests/</directory>
</testsuite>
<groups>
<exclude>
<group>mariadb</group>
<group>postgres</group>
</exclude>
</groups>
<php>
<env name="DB" value="mysql"/>
<env name="DB_DRIVER" value="pdo_mysql"/>
<env name="DB_HOST" value="127.0.0.1"/>
<env name="DB_USERNAME" value="root"/>
<env name="DB_PASSWORD" value=""/>
<env name="DB_NAME" value="event_store_tests"/>
<env name="DB_PORT" value="3306"/>
<env name="DB_CHARSET" value="utf8"/>
<!-- \PDO::ERRMODE_SILENT -->
<env name="DB_ATTR_ERRMODE" value="0"/>
</php>
</phpunit>