| language: python |
| dist: trusty |
| |
| python: |
| - "2.7" |
| - "3.6" |
| |
| env: |
| - TEST_TYPE="Server Side Test" |
| - TEST_TYPE="Patch Test" |
| |
| services: |
| - mysql |
| |
| install: |
| # fix mongodb travis error |
| - nvm install 10 |
| - pip install python-coveralls |
| - wget https://raw.githubusercontent.com/frappe/bench/master/playbooks/install.py |
| - sudo python install.py --develop --user travis --without-bench-setup |
| - sudo pip install -e ~/bench |
| |
| - rm $TRAVIS_BUILD_DIR/.git/shallow |
| - bash $TRAVIS_BUILD_DIR/travis/bench_init.sh |
| - cp -r $TRAVIS_BUILD_DIR/test_sites/test_site ~/frappe-bench/sites/ |
| |
| 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 |
| |
| - cd ~/frappe-bench |
| - bench get-app erpnext $TRAVIS_BUILD_DIR |
| - bench use test_site |
| - bench reinstall --mariadb-root-username root --mariadb-root-password travis --yes |
| - bench scheduler disable |
| - sed -i 's/9000/9001/g' sites/common_site_config.json |
| - bench start & |
| - sleep 10 |
| |
| script: |
| - bash $TRAVIS_BUILD_DIR/travis/run-tests.sh |
| |
| after_script: |
| - coveralls -b apps/erpnext -d ../../sites/.coverage |