Files
nextcloud-server/tests/phpunit-autotest-external.xml
Joas Schilling ebee539902 ci: Migrate PHPUnit configs
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-06-06 14:36:31 +02:00

31 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!--
- SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
- SPDX-FileCopyrightText: 2014-2016 ownCloud, Inc.
- SPDX-License-Identifier: AGPL-3.0-only
-->
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
bootstrap="bootstrap.php"
timeoutForSmallTests="900"
timeoutForMediumTests="900"
timeoutForLargeTests="900"
cacheDirectory=".phpunit.cache"
xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd">
<testsuite name="Nextcloud files external">
<directory>../apps/files_external/tests</directory>
<!-- exclude backends as they are called separately -->
<exclude>../apps/files_external/tests/Storage/</exclude>
</testsuite>
<source>
<include>
<file>../lib/private/Files/Storage/DAV.php</file>
<directory>../apps/files_external</directory>
</include>
<exclude>
<directory>../apps/files_external/l10n</directory>
<directory>../apps/files_external/3rdparty</directory>
<directory>../apps/files_external/tests</directory>
</exclude>
</source>
</phpunit>