Version 1
[yaffs-website] / vendor / drush / drush / tests / phpunit.xml.dist
1 <!-- Copy and rename to phpunit.xml. Customize as needed. -->
2 <phpunit backupGlobals="false"
3     backupStaticAttributes="false"
4     syntaxCheck="false"
5     bootstrap="bootstrap.inc"
6     colors="true">
7   <testsuites>
8     <testsuite name="Drush Test Suite">
9       <directory>.</directory>
10     </testsuite>
11   </testsuites>
12
13   <php>
14     <!-- These variables may alternatively be set as environment variables. -->
15
16     <!-- Drupal major version to run tests over -->
17     <!-- <var name="UNISH_DRUPAL_MAJOR_VERSION" value="8"/> -->
18
19     <!--Uncomment and edit one of the lines below depending on DB platform.-->
20     <!--DB User must have create/drop permissions-->
21     <!-- <var name="UNISH_DB_URL" value="mysql://root:@127.0.0.1"/> -->
22     <!-- <var name="UNISH_DB_URL" value="pgsql://postgres:@localhost"/>-->
23     <!-- <var name="UNISH_DB_URL" value="sqlite://none/of/this/matters"/> -->
24
25     <!--User must have write permissions to this directory.-->
26     <!--If not supplied, defaults to sys_get_temp_dir().-->
27     <!-- <var name="UNISH_TMP" value="/tmp"/> -->
28
29     <!--Uncomment the line below if your path to drush differs from `which drush`. Use absolute path.-->
30     <!--<var name="UNISH_DRUSH" value="/Users/mw/bin/drush"/>-->
31
32     <!--Uncomment to provide a group the user running the tests belong to. This is needed for some filesystem tests. -->
33     <!--<var name="UNISH_USERGROUP" value="staff"/>-->
34
35     <!-- Uncomment to disable the total runtime and output timeouts for commands run through CommandUnishTestCase::execute().  -->
36     <!-- <env name="UNISH_NO_TIMEOUTS" value="y"/> -->
37
38     <includePath>.</includePath>
39   </php>
40 </phpunit>