File tree Expand file tree Collapse file tree 2 files changed +1
-14
lines changed
Expand file tree Collapse file tree 2 files changed +1
-14
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ public function setUp(): void
5050 parent ::setUp ();
5151
5252 $ connection = ConnectionManager::get ('test ' );
53+ $ this ->skipIf ($ connection ->getDriver () instanceof Sqlite, 'This test fails in CI with sqlite ' );
5354 $ this ->oldConfig = Configure::read ('DebugKit ' );
5455 $ this ->restore = $ GLOBALS ['__PHPUNIT_BOOTSTRAP ' ];
5556 unset($ GLOBALS ['__PHPUNIT_BOOTSTRAP ' ]);
Original file line number Diff line number Diff line change 2525 */
2626class RequestTableTest extends TestCase
2727{
28- /**
29- * Setup
30- *
31- * Skip tests on SQLite as SQLite complains when tables are changed while a connection is open.
32- *
33- * @return void
34- */
35- public function setUp (): void
36- {
37- parent ::setUp ();
38- $ connection = ConnectionManager::get ('test ' );
39- $ this ->skipIf ($ connection ->getDriver () instanceof Sqlite, 'Schema insertion/removal breaks SQLite ' );
40- }
41-
4228 /**
4329 * test that schema is created on-demand.
4430 *
You can’t perform that action at this time.
0 commit comments