Skip to content

Commit 62b818d

Browse files
authored
Merge pull request #280 from alleyinteractive/feature/sqlite-opt-out
Disable SQLite by default
2 parents 1458f77 + 653536a commit 62b818d

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

tests/bootstrap.php

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,21 @@
22
/**
33
* Create WordPress Plugin Tests: Bootstrap
44
*
5+
* phpcs:disable Squiz.Commenting.InlineComment.InvalidEndChar
6+
*
57
* @package create-wordpress-plugin
68
*/
79

810
/**
911
* Visit {@see https://mantle.alley.com/testing/test-framework.html} to learn more.
1012
*/
1113
\Mantle\Testing\manager()
14+
// Rsync the plugin to plugins/create-wordpress-plugin when testing.
1215
->maybe_rsync_plugin()
13-
->with_sqlite()
16+
17+
// Use SQLite for testing instead of SQL (disabled by default).
18+
// ->with_sqlite()
19+
1420
// Load the main file of the plugin.
1521
->loaded( fn () => require_once __DIR__ . '/../plugin.php' )
1622
->install();

0 commit comments

Comments
 (0)