-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
phpunit.xml.dist
39 lines (39 loc) · 1.55 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
30
31
32
33
34
35
36
37
38
39
<?xml version="1.0" encoding="UTF-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
backupGlobals="false"
backupStaticProperties="false"
bootstrap="vendor/autoload.php"
colors="true"
cacheDirectory=".phpunit.result.cache"
stopOnFailure="false"
processIsolation="false"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.4/phpunit.xsd">
<testsuites>
<testsuite name="FeatureHyde">
<directory suffix="Test.php">./packages/hyde/tests</directory>
</testsuite>
<testsuite name="UnitFramework">
<directory suffix="Test.php">./packages/framework/tests/Unit</directory>
</testsuite>
<testsuite name="FeatureFramework">
<directory suffix="Test.php">./packages/framework/tests/Feature</directory>
</testsuite>
<testsuite name="Publications">
<directory suffix="Test.php">./packages/publications/tests</directory>
</testsuite>
<testsuite name="Realtime Compiler">
<directory suffix="Test.php">./packages/realtime-compiler/tests</directory>
<exclude>./packages/realtime-compiler/tests/Integration</exclude>
</testsuite>
</testsuites>
<coverage/>
<php>
<env name="ENV" value="testing"/>
</php>
<source>
<include>
<directory suffix=".php">./packages/framework/src</directory>
<directory suffix=".php">./packages/publications/src</directory>
</include>
</source>
</phpunit>