-
Notifications
You must be signed in to change notification settings - Fork 28
/
phpunit.xml.dist
38 lines (38 loc) · 1.33 KB
/
phpunit.xml.dist
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
bootstrap="tests/bootstrap.php"
backupGlobals="false"
backupStaticAttributes="false"
colors="true"
verbose="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
failOnRisky="true"
failOnWarning="true"
stopOnFailure="false"
>
<coverage>
<include>
<directory suffix=".php">src/</directory>
</include>
</coverage>
<php>
<ini name="error_reporting" value="-1"/>
<ini name="memory_limit" value="-1"/>
<env name="ISPELL_BINARY_PATH" value="ispell"/>
<!-- Shell used to run ispell binary, mandatory for dictionaries listing -->
<env name="ISPELL_SHELL_PATH" value=""/>
<env name="ASPELL_BINARY_PATH" value="aspell"/>
<env name="HUNSPELL_BINARY_PATH" value="hunspell"/>
<env name="LANGUAGETOOLS_ENDPOINT" value="http://languagetools:8010"/>
<env name="JAMSPELL_ENDPOINT" value="http://jamspell:8080"/>
</php>
<testsuites>
<testsuite name="PHPSpellCheck test suite">
<directory>tests</directory>
</testsuite>
</testsuites>
</phpunit>