From f1608d39f1373f6bef56b19ff80b758259bd00f1 Mon Sep 17 00:00:00 2001 From: jgen Date: Tue, 18 Feb 2014 12:22:52 -0500 Subject: [PATCH] Dump more logs and change the database username. --- .travis.yml | 6 +++--- tests/test_install.php | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 675caf8b..1337baf7 100644 --- a/.travis.yml +++ b/.travis.yml @@ -28,9 +28,9 @@ script: php tests/test_install.php -d $DB after_failure: - sudo cat /etc/nginx/sites-enabled/default - sudo cat /var/log/nginx/error.log - - sudo cat /var/log/php_errors.log - - ls /var/log - - sudo php -i + - sudo cat /var/log/php5-fpm.log + - sudo cat /var/log/mysql.* + - sudo ls /var/log/nginx # configure notifications (email, IRC, campfire etc) #notifications: diff --git a/tests/test_install.php b/tests/test_install.php index c8d10c90..5f261ec0 100644 --- a/tests/test_install.php +++ b/tests/test_install.php @@ -16,7 +16,7 @@ class ShimmieSimpleTestCase extends WebTestCase { $this->database = $db; if ($db === "mysql") { - $this->db_user = "travis"; + $this->db_user = "root"; $this->db_pass = ""; } elseif ($db === "pgsql") { $this->db_user = "postgres";