From d6fc3372729b501b62cea27ce8ff4ee879169064 Mon Sep 17 00:00:00 2001 From: David Goodwin Date: Sat, 16 Feb 2019 19:17:27 +0000 Subject: [PATCH] dump mysql config things; lets fumble about in the dark once again and see... --- tests/bootstrap.php | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 58198367..b65fb3e8 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -55,7 +55,10 @@ if (getenv('DATABASE') == 'mysql') { $config = parse_ini_file($expand_tilde('~/.my.cnf')); + var_dump($config); + if (empty($config)) { + var_dump("using default mysql config (localhost, root, empty password"); $config = ['user'=>'root', 'host' => '127.0.0.1', 'password' => '']; }