2016-07-29 14:09:49 +00:00
|
|
|
dist: trusty
|
2017-07-10 17:30:01 +00:00
|
|
|
|
2019-07-25 08:12:43 +00:00
|
|
|
language: python
|
2019-05-01 06:01:08 +00:00
|
|
|
|
2019-07-25 15:39:34 +00:00
|
|
|
addons:
|
|
|
|
mariadb: 10.3
|
2013-12-24 06:47:59 +00:00
|
|
|
|
2019-07-25 08:12:43 +00:00
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- name: "Python 2.7 Server Side Test"
|
|
|
|
python: 2.7
|
|
|
|
script: bench run-tests --app erpnext --coverage
|
|
|
|
|
|
|
|
- name: "Python 3.6 Server Side Test"
|
|
|
|
python: 3.6
|
|
|
|
script: bench run-tests --app erpnext --coverage
|
|
|
|
|
|
|
|
- name: "Python 2.7 Patch Test"
|
|
|
|
python: 2.7
|
|
|
|
before_script:
|
|
|
|
- wget http://build.erpnext.com/20171108_190013_955977f8_database.sql.gz
|
|
|
|
- bench --force restore ~/frappe-bench/20171108_190013_955977f8_database.sql.gz --mariadb-root-password travis
|
|
|
|
script: bench migrate
|
|
|
|
|
|
|
|
- name: "Python 3.6 Patch Test"
|
|
|
|
python: 3.6
|
|
|
|
before_script:
|
|
|
|
- wget http://build.erpnext.com/20171108_190013_955977f8_database.sql.gz
|
|
|
|
- bench --force restore ~/frappe-bench/20171108_190013_955977f8_database.sql.gz --mariadb-root-password travis
|
|
|
|
script: bench migrate
|
|
|
|
|
2013-12-24 06:47:59 +00:00
|
|
|
install:
|
2019-02-26 09:00:00 +00:00
|
|
|
- nvm install 10
|
2016-07-29 14:09:49 +00:00
|
|
|
- wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py
|
2019-07-04 11:22:01 +00:00
|
|
|
- sudo python install.py --develop --user travis --without-bench-setup
|
2016-07-29 14:09:49 +00:00
|
|
|
- sudo pip install -e ~/bench
|
|
|
|
|
2015-01-01 10:18:04 +00:00
|
|
|
- rm $TRAVIS_BUILD_DIR/.git/shallow
|
2016-04-07 12:49:56 +00:00
|
|
|
- bash $TRAVIS_BUILD_DIR/travis/bench_init.sh
|
2015-01-01 10:18:04 +00:00
|
|
|
- cp -r $TRAVIS_BUILD_DIR/test_sites/test_site ~/frappe-bench/sites/
|
2014-10-12 14:05:46 +00:00
|
|
|
|
2017-07-10 17:30:01 +00:00
|
|
|
before_script:
|
|
|
|
- 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
|
|
|
|
|
2015-01-01 10:18:04 +00:00
|
|
|
- cd ~/frappe-bench
|
|
|
|
- bench get-app erpnext $TRAVIS_BUILD_DIR
|
2015-03-31 07:41:32 +00:00
|
|
|
- bench use test_site
|
2019-01-22 12:46:13 +00:00
|
|
|
- bench reinstall --mariadb-root-username root --mariadb-root-password travis --yes
|
2019-01-22 12:11:56 +00:00
|
|
|
- bench scheduler disable
|
|
|
|
- sed -i 's/9000/9001/g' sites/common_site_config.json
|
|
|
|
- bench start &
|
|
|
|
- sleep 10
|
2013-12-24 06:47:59 +00:00
|
|
|
|
2019-05-01 06:01:08 +00:00
|
|
|
after_script:
|
2019-07-25 15:40:06 +00:00
|
|
|
- pip install python-coveralls
|
2019-05-01 06:01:08 +00:00
|
|
|
- coveralls -b apps/erpnext -d ../../sites/.coverage
|