-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathphpunit.xml
37 lines (36 loc) · 1.24 KB
/
phpunit.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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.3/phpunit.xsd"
bootstrap="vendor/autoload.php"
processIsolation="false"
cacheDirectory=".phpunit.cache"
>
<coverage includeUncoveredFiles="true">
<report>
<clover outputFile="./test-results/coverage.xml"/>
<html outputDirectory="./test-results/coverage-report"/>
<text outputFile="php://stdout"/>
</report>
</coverage>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
<exclude>tests/benchmark</exclude>
</testsuite>
</testsuites>
<groups>
<exclude>
<group>dev_trader</group>
<!-- This group of functions is in the official TALib but not yet in the PHPTrader extension. They can only be tested by people who build their extension by updating their extension source with the upstream TALib. -->
</exclude>
</groups>
<source>
<include>
<directory suffix=".php">./source</directory>
</include>
<exclude>
<directory>./vendor</directory>
</exclude>
</source>
</phpunit>