forked from graphaware/neo4j-php-ogm
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphpunit.xml.dist
More file actions
29 lines (27 loc) · 813 Bytes
/
phpunit.xml.dist
File metadata and controls
29 lines (27 loc) · 813 Bytes
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
<?xml version="1.0"?>
<phpunit bootstrap="./tests/autoload.php" colors="true" verbose="true">
<testsuites>
<testsuite name="Neo4j-PHP-OGM Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>perf-test</group>
</exclude>
</groups>
<filter>
<blacklist>
<directory>tests</directory>
<directory>vendor</directory>
<directory>bin</directory>
</blacklist>
</filter>
<php>
<env name="NEO4J_SCHEMA" value="bolt"/>
<env name="NEO4J_HOST" value="localhost"/>
<env name="NEO4J_PORT" value="7687"/>
<env name="NEO4J_USER" value="neo4j"/>
<env name="NEO4J_PASSWORD" value="admin"/>
</php>
</phpunit>