You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
language: python
|
|
|
|
|
|
|
|
python:
|
|
|
|
- "2.7"
|
|
|
|
|
|
|
|
services:
|
|
|
|
- mysql
|
|
|
|
|
|
|
|
install:
|
|
|
|
- sudo service mysql stop
|
|
|
|
- sudo apt-get install python-software-properties
|
|
|
|
- sudo apt-key adv --recv-keys --keyserver hkp://keyserver.ubuntu.com:80 0xcbcb082a1bb943db
|
|
|
|
- sudo add-apt-repository 'deb http://ftp.osuosl.org/pub/mariadb/repo/5.5/ubuntu precise main'
|
|
|
|
- sudo apt-get update
|
|
|
|
- sudo apt-get purge -y mysql-common
|
|
|
|
- sudo apt-get install mariadb-server mariadb-common libmariadbclient-dev
|
|
|
|
- CFLAGS=-O0 pip install git+https://github.com/frappe/frappe.git@develop &&
|
|
|
|
- pip install --editable .
|
|
|
|
|
|
|
|
script:
|
|
|
|
- cd ./test_sites/
|
|
|
|
- frappe --use test_site
|
|
|
|
- frappe --reinstall
|
|
|
|
- frappe --install_app erpnext --verbose
|
|
|
|
- frappe -b
|
|
|
|
- frappe --serve_test &
|
|
|
|
- frappe --verbose --run_tests --app erpnext
|
|
|
|
|
|
|
|
before_script:
|
|
|
|
- mysql -e 'create database test_frappe'
|
|
|
|
- echo "USE mysql;\nCREATE USER 'test_frappe'@'localhost' IDENTIFIED BY 'test_frappe';\nFLUSH PRIVILEGES;\n" | mysql -u root
|