From 7dc6a0b52d216bc33a17389297818dd5b4cddcf4 Mon Sep 17 00:00:00 2001 From: shreyas Date: Mon, 1 Aug 2016 17:17:33 +0530 Subject: [PATCH] [Minor] Replace new installer in travis.yml --- .travis.yml | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index 4601f0eafb..8e89187db8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,4 +1,5 @@ language: python +dist: trusty python: - "2.7" @@ -11,9 +12,13 @@ before_install: - "sh -e /etc/init.d/xvfb start" install: - - sudo apt-get purge -y mysql-common - - wget https://raw.githubusercontent.com/frappe/bench/master/install_scripts/setup_frappe.sh - - sudo bash setup_frappe.sh --skip-setup-bench --mysql-root-password travis --bench-branch develop + - sudo apt-get purge -y mysql-common mysql-server mysql-client + # - wget https://raw.githubusercontent.com/frappe/bench/master/install_scripts/setup_frappe.sh + # - sudo bash setup_frappe.sh --skip-setup-bench --mysql-root-password travis --bench-branch develop + - wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py + - sudo python install.py --develop --user travis --without-bench-setup + - sudo pip install -e ~/bench + - rm $TRAVIS_BUILD_DIR/.git/shallow - cd ~/ && bench init frappe-bench --frappe-path $TRAVIS_BUILD_DIR - cp -r $TRAVIS_BUILD_DIR/test_sites/test_site ~/frappe-bench/sites/ @@ -28,7 +33,6 @@ script: - bench --verbose run-tests --driver Firefox before_script: - - mysql -e 'create database test_frappe' + - mysql -u root -ptravis -e 'create database test_frappe' - echo "USE mysql;\nCREATE USER 'test_frappe'@'localhost' IDENTIFIED BY 'test_frappe';\nFLUSH PRIVILEGES;\n" | mysql -u root -ptravis - echo "USE mysql;\nGRANT ALL PRIVILEGES ON \`test_frappe\`.* TO 'test_frappe'@'localhost';\n" | mysql -u root -ptravis -