Skip to content

Commit 57340e2

Browse files
committed
Need to use sqlite now b/c no mysql. From /pull/27/files.
1 parent 9818f84 commit 57340e2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

core-dev/phpunit-chrome.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
<!-- Do not limit the amount of memory tests take to run. -->
2424
<ini name="memory_limit" value="-1"/>
2525
<env name="SIMPLETEST_BASE_URL" value="DRUPAL_CORE_DDEV_URL"/>
26-
<env name="SIMPLETEST_DB" value="mysql://db:db@db/db"/>
26+
<!-- <env name="SIMPLETEST_DB" value="mysql://db:db@db/db"/> -->
27+
<env name="SIMPLETEST_DB" value="sqlite://localhost/sites/default/files/db.sqlite"/>
2728
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value="/var/www/html/test_output"/>
2829
<!-- By default, browser tests will output links that use the base URL set
2930
in SIMPLETEST_BASE_URL. However, if your SIMPLETEST_BASE_URL is an internal

core-dev/phpunit-firefox.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@
2323
<!-- Do not limit the amount of memory tests take to run. -->
2424
<ini name="memory_limit" value="-1"/>
2525
<env name="SIMPLETEST_BASE_URL" value="DRUPAL_CORE_DDEV_URL"/>
26-
<env name="SIMPLETEST_DB" value="mysql://db:db@db/db"/>
26+
<!-- <env name="SIMPLETEST_DB" value="mysql://db:db@db/db"/> -->
27+
<env name="SIMPLETEST_DB" value="sqlite://localhost/sites/default/files/db.sqlite"/>
2728
<env name="BROWSERTEST_OUTPUT_DIRECTORY" value="/var/www/html/test_output"/>
2829
<!-- By default, browser tests will output links that use the base URL set
2930
in SIMPLETEST_BASE_URL. However, if your SIMPLETEST_BASE_URL is an internal

0 commit comments

Comments
 (0)