forked from mapasculturais/mapasculturais
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathphpunit.xml
More file actions
34 lines (29 loc) · 1.12 KB
/
phpunit.xml
File metadata and controls
34 lines (29 loc) · 1.12 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
colors="true"
stopOnFailure="false"
executionOrder="random"
resolveDependencies="true">
<testsuites>
<testsuite name="Application Test Suite">
<directory>tests/src</directory>
<exclude>tests/src/bootstrap.php</exclude>
</testsuite>
</testsuites>
<!--
Coverage source: escopo restrito aos módulos sendo testados.
Ampliar conforme novos testes forem adicionados.
Para gerar coverage localmente:
php -d pcov.enabled=1 -d pcov.directory=/var/www/src -d memory_limit=512M
vendor/bin/phpunit -configuration phpunit.xml -coverage-clover tests/coverage/clover.xml
NOTA: não incluir coverage/report aqui para não gerar automaticamente
em toda execução (lento e pode estourar memória).
-->
<source>
<include>
<directory>src/modules/OpportunityWorkplan</directory>
<directory>src/modules/ProjectMonitoring</directory>
</include>
</source>
</phpunit>