https://github.com/owncloud/core
Raw File
Tip revision: 1fd7692f632dc1da1594f8ecff5136daf654fbc9 authored by nabim777 on 07 July 2023, 10:41:06 UTC
drone star update
Tip revision: 1fd7692
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