Welcome to mirror list, hosted at ThFree Co, Russian Federation.

phpunit-autotest.xml « tests - github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2d45b50db7d78305b21f4189700814339a590a8 (plain)
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"
		 bootstrap="bootstrap.php"
		 verbose="true"
		 backupGlobals="false"
		 timeoutForSmallTests="900"
		 timeoutForMediumTests="900"
		 timeoutForLargeTests="900"
		 convertDeprecationsToExceptions="true"
		 xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
	<testsuite name="ownCloud">
		<directory suffix=".php">lib/</directory>
		<directory suffix=".php">Core/</directory>
		<directory suffix=".php">Test/</directory>
		<file>apps.php</file>
	</testsuite>
	<coverage>
		<include>
			<directory suffix=".php">..</directory>
		</include>
		<exclude>
			<directory suffix=".php">../3rdparty</directory>
			<directory suffix=".php">../apps/*/composer</directory>
			<directory suffix=".php">../apps/*/tests</directory>
			<directory suffix=".php">../apps/files_external/3rdparty</directory>
			<directory suffix=".php">../build</directory>
			<directory suffix=".php">../lib/composer</directory>
			<directory suffix=".php">../tests</directory>
		</exclude>
	</coverage>
	<listeners>
		<listener class="StartSessionListener" file="startsessionlistener.php" />
	</listeners>
</phpunit>