-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
phpunit.xml.dist
25 lines (25 loc) · 994 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd"
backupGlobals="false"
bootstrap="vendor/autoload.php"
colors="true"
processIsolation="false"
stopOnFailure="false"
cacheDirectory=".phpunit.cache"
backupStaticProperties="false"
>
<testsuites>
<testsuite name="Package Test Suite">
<directory>tests/Feature/</directory>
<exclude>tests/database/factories/</exclude>
</testsuite>
</testsuites>
<php>
<server name="YOUTRACK_BASE_URI" value="https://youtrack.example.com"/>
<server name="YOUTRACK_AUTH" value="token"/>
<server name="YOUTRACK_TOKEN" value=""/>
<server name="YOUTRACK_USERNAME" value=""/>
<server name="YOUTRACK_PASSWORD" value=""/>
<server name="YOUTRACK_PROJECT" value="TEST"/>
</php>
</phpunit>