2019-07-25 13:42:43 +05:30
|
|
|
language: python
|
2020-05-14 12:09:36 +05:30
|
|
|
dist: trusty
|
2019-05-01 11:31:08 +05:30
|
|
|
|
2019-07-25 21:36:22 +05:30
|
|
|
git:
|
|
|
|
depth: 1
|
|
|
|
|
|
|
|
cache:
|
|
|
|
- pip
|
|
|
|
|
2019-07-25 21:09:34 +05:30
|
|
|
addons:
|
2019-07-25 21:21:19 +05:30
|
|
|
hosts: test_site
|
2019-07-25 21:09:34 +05:30
|
|
|
mariadb: 10.3
|
2013-12-24 12:17:59 +05:30
|
|
|
|
2019-07-25 13:42:43 +05:30
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- name: "Python 3.6 Server Side Test"
|
|
|
|
python: 3.6
|
2019-07-25 21:21:19 +05:30
|
|
|
script: bench --site test_site run-tests --app erpnext --coverage
|
2019-07-25 13:42:43 +05:30
|
|
|
|
|
|
|
- name: "Python 3.6 Patch Test"
|
|
|
|
python: 3.6
|
|
|
|
before_script:
|
|
|
|
- wget http://build.erpnext.com/20171108_190013_955977f8_database.sql.gz
|
2019-07-25 21:51:12 +05:30
|
|
|
- bench --site test_site --force restore ~/frappe-bench/20171108_190013_955977f8_database.sql.gz
|
2019-07-25 21:21:19 +05:30
|
|
|
script: bench --site test_site migrate
|
2019-07-25 13:42:43 +05:30
|
|
|
|
2013-12-24 12:17:59 +05:30
|
|
|
install:
|
2019-07-25 21:11:18 +05:30
|
|
|
- cd ~
|
2019-02-26 14:30:00 +05:30
|
|
|
- nvm install 10
|
2019-07-25 21:11:18 +05:30
|
|
|
|
2020-05-14 12:09:36 +05:30
|
|
|
- pip install frappe-bench
|
2016-07-29 19:39:49 +05:30
|
|
|
|
2019-07-25 21:15:30 +05:30
|
|
|
- git clone https://github.com/frappe/frappe --branch $TRAVIS_BRANCH --depth 1
|
2019-07-25 21:28:15 +05:30
|
|
|
- bench init --skip-assets --frappe-path ~/frappe --python $(which python) frappe-bench
|
2019-07-25 21:15:30 +05:30
|
|
|
|
2019-07-25 21:18:05 +05:30
|
|
|
- mkdir ~/frappe-bench/sites/test_site
|
|
|
|
- cp -r $TRAVIS_BUILD_DIR/.travis/site_config.json ~/frappe-bench/sites/test_site/
|
2014-10-12 19:35:46 +05:30
|
|
|
|
2019-07-25 21:19:30 +05:30
|
|
|
- mysql -u root -e "SET GLOBAL character_set_server = 'utf8mb4'"
|
|
|
|
- mysql -u root -e "SET GLOBAL collation_server = 'utf8mb4_unicode_ci'"
|
|
|
|
|
|
|
|
- mysql -u root -e "CREATE DATABASE test_frappe"
|
|
|
|
- mysql -u root -e "CREATE USER 'test_frappe'@'localhost' IDENTIFIED BY 'test_frappe'"
|
|
|
|
- mysql -u root -e "GRANT ALL PRIVILEGES ON \`test_frappe\`.* TO 'test_frappe'@'localhost'"
|
|
|
|
|
|
|
|
- mysql -u root -e "UPDATE mysql.user SET Password=PASSWORD('travis') WHERE User='root'"
|
|
|
|
- mysql -u root -e "FLUSH PRIVILEGES"
|
2017-07-10 23:00:01 +05:30
|
|
|
|
2019-07-25 22:40:26 +05:30
|
|
|
- wget -O /tmp/wkhtmltox.tar.xz https://github.com/frappe/wkhtmltopdf/raw/master/wkhtmltox-0.12.3_linux-generic-amd64.tar.xz
|
|
|
|
- tar -xf /tmp/wkhtmltox.tar.xz -C /tmp
|
|
|
|
- sudo mv /tmp/wkhtmltox/bin/wkhtmltopdf /usr/local/bin/wkhtmltopdf
|
|
|
|
- sudo chmod o+x /usr/local/bin/wkhtmltopdf
|
2019-11-27 14:53:58 +05:30
|
|
|
- sudo apt-get install libcups2-dev
|
2019-07-25 22:40:26 +05:30
|
|
|
|
2015-01-01 15:48:04 +05:30
|
|
|
- cd ~/frappe-bench
|
2019-07-25 21:27:20 +05:30
|
|
|
|
|
|
|
- sed -i 's/watch:/# watch:/g' Procfile
|
|
|
|
- sed -i 's/schedule:/# schedule:/g' Procfile
|
|
|
|
- sed -i 's/socketio:/# socketio:/g' Procfile
|
|
|
|
- sed -i 's/redis_socketio:/# redis_socketio:/g' Procfile
|
|
|
|
|
2019-07-25 21:23:24 +05:30
|
|
|
- bench get-app erpnext $TRAVIS_BUILD_DIR
|
2019-07-25 21:38:07 +05:30
|
|
|
- bench start &
|
2019-07-25 21:25:53 +05:30
|
|
|
- bench --site test_site reinstall --yes
|
2013-12-24 12:17:59 +05:30
|
|
|
|
2019-05-01 11:31:08 +05:30
|
|
|
after_script:
|
2020-02-20 08:19:54 +01:00
|
|
|
- pip install coverage==4.5.4
|
2019-07-25 21:10:06 +05:30
|
|
|
- pip install python-coveralls
|
2019-05-01 11:31:08 +05:30
|
|
|
- coveralls -b apps/erpnext -d ../../sites/.coverage
|