-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml
30 lines (30 loc) · 1.18 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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" colors="true" testdox="true" processIsolation="false" stopOnFailure="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd" bootstrap="vendor/autoload.php" cacheDirectory=".phpunit.cache">
<coverage/>
<testsuites>
<testsuite name="all">
<directory>tests</directory>
</testsuite>
<testsuite name="offline_no_docker">
<file>tests/Unit/LocalProviderTest.php</file>
</testsuite>
<testsuite name="offline">
<file>tests/Unit/LocalProviderTest.php</file>
<file>tests/Unit/SFtpProviderTest.php</file>
<file>tests/Unit/S3ProviderTest.php</file>
<file>tests/Unit/FtpProviderTest.php</file>
<file>tests/Unit/FromS3ToSFtpProviderTest.php</file>
<file>tests/Unit/FromSFtpToS3ProviderTest.php</file>
<file>tests/Unit/FromLocalToS3ProviderTest.php</file>
<file>tests/Unit/FromS3ToLocalProviderTest.php</file>
</testsuite>
</testsuites>
<php>
<env name="APP_ENV" value="testing"/>
</php>
<source>
<include>
<directory suffix=".php">src/</directory>
</include>
</source>
</phpunit>