Don't worry about the MySQL slow log when debugging Travis.

This commit is contained in:
Jeff Geerling 2014-05-23 14:07:12 -05:00
parent af3a1d154c
commit e9f332d42a

View file

@ -14,7 +14,6 @@ before_install:
- sudo apt-get autoclean - sudo apt-get autoclean
- sudo rm -rf /var/lib/mysql - sudo rm -rf /var/lib/mysql
- sudo truncate -s 0 /var/log/mysql/error.log - sudo truncate -s 0 /var/log/mysql/error.log
- sudo truncate -s 0 /var/log/mysql/slow.log
install: install:
# Install Ansible. # Install Ansible.
@ -40,7 +39,6 @@ script:
# Some MySQL debugging (show all the logs). # Some MySQL debugging (show all the logs).
- "sudo ls -lah /var/log" - "sudo ls -lah /var/log"
- "sudo cat /var/log/mysql/error.log" - "sudo cat /var/log/mysql/error.log"
- "sudo cat /var/log/mysql/slow.log"
# Check to make sure we can connect to MySQL. # Check to make sure we can connect to MySQL.
- > - >