forked from drush-ops/drush
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphpunit.xml.dist
40 lines (32 loc) · 1.61 KB
/
phpunit.xml.dist
1
2
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
<!-- Copy and rename to phpunit.xml. Customize as needed. -->
<phpunit backupGlobals="false"
backupStaticAttributes="false"
syntaxCheck="false"
bootstrap="bootstrap.inc"
colors="true">
<testsuites>
<testsuite name="Drush Test Suite">
<directory>.</directory>
</testsuite>
</testsuites>
<php>
<!-- These variables may alternatively be set as bash environment variables. -->
<!-- Drupal major version to run tests over -->
<!-- <var name="UNISH_DRUPAL_MAJOR_VERSION" value="8"/> -->
<!--Uncomment and edit one of the lines below depending on DB platform.-->
<!--DB User must have create/drop permissions-->
<!-- <var name="UNISH_DB_URL" value="mysql://root:@127.0.0.1"/> -->
<!-- <var name="UNISH_DB_URL" value="pgsql://postgres:@localhost"/>-->
<!-- <var name="UNISH_DB_URL" value="sqlite://none/of/this/matters"/> -->
<!--User must have write permissions to this directory.-->
<!--If not supplied, defaults to sys_get_tmp_dir().-->
<!-- <var name="UNISH_TMP" value="/tmp"/> -->
<!--Uncomment the line below if your path to drush differs from `which drush`. Use absolute path.-->
<!--<var name="UNISH_DRUSH" value="/Users/mw/bin/drush"/>-->
<!--Uncomment to provide a group the user running the tests belong to. This is needed for some filesystem tests. -->
<!--<var name="UNISH_USERGROUP" value="staff"/>-->
<!-- Uncomment to disable the total runtime and output timeouts for commands run through CommandUnishTestCase::execute(). -->
<!-- <env name="UNISH_NO_TIMEOUTS" value="y"/> -->
<includePath>.</includePath>
</php>
</phpunit>