-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathphpunit.xml.dist
29 lines (29 loc) · 1.08 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
<?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="vendor/autoload.php"
colors="true"
>
<testsuites>
<testsuite name="Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./tests</directory>
<directory suffix=".php">./src/Facades</directory>
<directory suffix=".php">./src/Log</directory>
<file>./src/NutgramServiceProvider.php</file>
<file>./src/Console/RunCommand.php</file>
<file>./src/Console/BaseMakeCommand.php</file>
<file>./src/Mixins/MixinUtils.php</file>
</exclude>
</coverage>
<php>
<env name="TELEGRAM_TOKEN" value="TELEGRAM_TOKEN_HERE" force="true"/>
</php>
</phpunit>