https://github.com/owncloud/core
Raw File
Tip revision: b29326c6b746e83406ca4e2c543fc68ac06f0400 authored by Phil Davis on 23 September 2022, 04:58:54 UTC
Upgrading laminas/laminas-servicemanager (3.16.0 => 3.17.0)
Tip revision: b29326c
phpunit-autotest-external.xml
<?xml version="1.0" encoding="utf-8" ?>
<phpunit bootstrap="bootstrap.php"
		 verbose="true"
		 failOnRisky="true"
		 failOnWarning="true"
		 timeoutForSmallTests="900"
		 timeoutForMediumTests="900"
		 timeoutForLargeTests="900"
>
  <testsuites>
    <testsuite name='ownCloud files external'>
      <directory suffix=".php">../apps/files_external/tests</directory>
      <!-- exclude backends as they are called separately -->
      <exclude>../apps/files_external/tests/Storage/</exclude>
    </testsuite>
  </testsuites>
  <!-- filters for code coverage -->
  <coverage>
    <!-- whitelist processUncoveredFilesFromWhitelist="true" -->
    <include>
      <file>../lib/private/Files/Storage/DAV.php</file>
      <directory suffix=".php">../apps/files_external</directory>
    </include>
    <exclude>
      <directory suffix=".php">../apps/files_external/l10n</directory>
      <directory suffix=".php">../apps/files_external/3rdparty</directory>
      <directory suffix=".php">../apps/files_external/tests</directory>
    </exclude>
  </coverage>
</phpunit>
back to top