2
0
mirror of https://github.com/frappe/books.git synced 2025-02-02 12:08:27 +00:00

added mysql service to travis

This commit is contained in:
Shridhar 2018-02-08 16:27:34 +05:30
parent ab21928142
commit 278e953429

View File

@ -3,6 +3,9 @@ language: node_js
node_js:
- "8"
services:
- mysql
before_install:
- mysql -u root -ptravis -e 'create database test_frappejs'
- echo "USE mysql;\nCREATE USER 'test_frappejs'@'localhost' IDENTIFIED BY 'test_frappejs';\nFLUSH PRIVILEGES;\n" | mysql -u root -ptravis