mirror of
https://github.com/frappe/bench.git
synced 2024-11-11 15:51:03 +00:00
19 lines
627 B
YAML
19 lines
627 B
YAML
language: python
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
install:
|
|
- sudo apt-get purge -y mysql-common
|
|
- sudo python $TRAVIS_BUILD_DIR/installer/install.py --user travis --skip-bench-setup
|
|
# - sudo bash $TRAVIS_BUILD_DIR/install_scripts/setup_frappe.sh --skip-install-bench --mysql-root-password travis
|
|
- mkdir -p ~/bench-repo
|
|
- cp -r $TRAVIS_BUILD_DIR/* ~/bench-repo/
|
|
- cd ~ && sudo python bench-repo/installer/install.py --only-dependencies
|
|
|
|
script:
|
|
- cd ~
|
|
- sudo pip install --upgrade pip
|
|
- sudo pip install -e bench-repo
|
|
- sudo python -m unittest bench.tests.test_setup_production.TestSetupProduction.test_setup_production
|