1234567891011121314151617181920212223242526272829303132333435363738 |
- <?xml version="1.0" encoding="utf-8" ?>
- <!--
- - SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- - SPDX-FileCopyrightText: 2016 ownCloud, Inc.
- - SPDX-License-Identifier: AGPL-3.0-only
- -->
- <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.6/phpunit.xsd">
- <testsuite name="Nextcloud Server">
- <directory suffix=".php">lib/</directory>
- <directory suffix=".php">Core/</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>
|