brotherton-erpnext/.travis.yml

31 lines
628 B
YAML
Raw Normal View History

2014-02-06 08:37:15 +00:00
language: python
2014-02-06 07:36:10 +00:00
python:
- "2.7"
services:
- mysql
install:
- pip install git+https://github.com/webnotes/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
before_script:
- mysql -e 'create database travis' &&
- echo "USE mysql;\nUPDATE user SET password=PASSWORD('travis') WHERE user='travis';\nFLUSH PRIVILEGES;\n" | mysql -u root