From 86903e5f5bc3b86ff89ef26c7d296da752fa7f67 Mon Sep 17 00:00:00 2001 From: Rushabh Mehta Date: Fri, 14 Feb 2014 15:54:43 +0530 Subject: [PATCH] fixed travis --- .travis.yml | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/.travis.yml b/.travis.yml index 41ba344237..866e9b1795 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,22 +7,14 @@ services: - mysql install: - - pip install git+https://github.com/webnotes/wnframework.git@4.0.0-wip && + - CFLAGS=-O0 pip install git+https://github.com/frappe/wnframework.git@4.0.0-wip && - pip install --editable . script: cd ./test_sites/ && - webnotes --reinstall -v test_site && - webnotes --install_app erpnext -v test_site && - webnotes --run_tests -v test_site --app erpnext - -branches: - except: - - develop - - master - - 3.x.x - - slow - - webshop_refactor + frappe --reinstall -v test_site && + frappe --install_app erpnext -v test_site && + frappe --run_tests -v test_site --app erpnext before_script: - mysql -e 'create database travis' &&