Changeset 44705 for trunk/phpunit.xml.dist
- Timestamp:
- 01/28/2019 05:20:06 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/phpunit.xml.dist
r44702 r44705 1 1 <phpunit 2 bootstrap="tests/phpunit/includes/bootstrap.php"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 35 36 37 38 39 40 41 2 bootstrap="tests/phpunit/includes/bootstrap.php" 3 backupGlobals="false" 4 colors="true" 5 beStrictAboutTestsThatDoNotTestAnything="true" 6 > 7 <testsuites> 8 <!-- Default test suite to run all tests --> 9 <testsuite name="default"> 10 <directory suffix=".php">tests/phpunit/tests</directory> 11 <file phpVersion="5.3.0">tests/phpunit/tests/actions/closures.php</file> 12 <file phpVersion="5.3.0">tests/phpunit/tests/image/editor.php</file> 13 <file phpVersion="5.3.0">tests/phpunit/tests/image/editorGd.php</file> 14 <file phpVersion="5.3.0">tests/phpunit/tests/image/editorImagick.php</file> 15 <file phpVersion="5.3.0">tests/phpunit/tests/oembed/headers.php</file> 16 <exclude>tests/phpunit/tests/actions/closures.php</exclude> 17 <exclude>tests/phpunit/tests/image/editor.php</exclude> 18 <exclude>tests/phpunit/tests/image/editorGd.php</exclude> 19 <exclude>tests/phpunit/tests/image/editorImagick.php</exclude> 20 <exclude>tests/phpunit/tests/oembed/headers.php</exclude> 21 <exclude>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</exclude> 22 </testsuite> 23 <!-- Sets the DOING_AUTOSAVE constant, so needs to be run last --> 24 <testsuite name="restapi-autosave"> 25 <file>tests/phpunit/tests/rest-api/rest-autosaves-controller.php</file> 26 </testsuite> 27 </testsuites> 28 <groups> 29 <exclude> 30 <group>ajax</group> 31 <group>ms-files</group> 32 <group>ms-required</group> 33 <group>external-http</group> 34 </exclude> 35 </groups> 36 <logging> 37 <log type="junit" target="tests/phpunit/build/logs/junit.xml" /> 38 </logging> 39 <php> 40 <const name="WP_RUN_CORE_TESTS" value="1" /> 41 </php> 42 42 <listeners> 43 43 <listener class="SpeedTrapListener" file="tests/phpunit/includes/listener-loader.php">
Note: See TracChangeset
for help on using the changeset viewer.