* [ui-tests] python is back! * [minor] remove old test * [test] dont test test_runner * [tests] try firefox * [tests] try chrome * [tests] try chrome * [tests] try chrome * [tests] try chrome 1 * [tests] try chrome 2 * [tests] try chrome 3 * [tests] try phantomJS * [tests] try chrome * [tests] try chrome * [tests] try chrome * [tests] try chrome * [tests] try chrome * [tests] try chrome * [tests] try chrome * [tests] try chrome * [tests] login click button * [tests] login click button * [tests] show log * [test] test with start_maximized * [test] test only login * [travis] test another port for selenium * [travis] try running ui tests after unittests are done * [travis] pring body_div if fails * [tests] complete setup wizard for frappe * [minor] move ui tests to frappe/ui/tests * [tests] ui tests in public and codacy fixes * [fix] tests + eslint * [minor] move tests to tests/ui folder and print console after print * [fix] linting * [tests] added documentation and better integration testing * [promise] form triggering is now promise based * [test] * [test] * [test] * [test] * [test] print output * [minor] default empty in select and print console * [cleanup] more minor fixes * [enhance] first-cut done! * [minor] frappe.run_serially to pass arguments while chaining
56 lines
1.6 KiB
YAML
56 lines
1.6 KiB
YAML
language: python
|
|
dist: trusty
|
|
group: deprecated-2017Q2
|
|
|
|
addons:
|
|
apt:
|
|
sources:
|
|
- google-chrome
|
|
packages:
|
|
- google-chrome-stable
|
|
# sauce_connect:
|
|
# username: "rmehta1"
|
|
# access_key: "a80640ec-24c8-44ad-9398-1b6f123ae4a1"
|
|
|
|
python:
|
|
- "2.7"
|
|
|
|
services:
|
|
- mysql
|
|
|
|
install:
|
|
- sudo apt-get purge -y mysql-common mysql-server mysql-client
|
|
- nvm install v7.10.0
|
|
- 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
|
|
- cd ~/ && bench init frappe-bench --frappe-path $TRAVIS_BUILD_DIR
|
|
- cp -r $TRAVIS_BUILD_DIR/test_sites/test_site ~/frappe-bench/sites/
|
|
|
|
before_script:
|
|
- wget http://chromedriver.storage.googleapis.com/2.27/chromedriver_linux64.zip
|
|
- unzip chromedriver_linux64.zip
|
|
- sudo apt-get install libnss3
|
|
- sudo apt-get --only-upgrade install google-chrome-stable
|
|
- sudo cp chromedriver /usr/local/bin/.
|
|
- sudo chmod +x /usr/local/bin/chromedriver
|
|
- export DISPLAY=:99.0
|
|
- sh -e /etc/init.d/xvfb start
|
|
- sleep 3
|
|
- 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 use test_site
|
|
- bench reinstall --yes
|
|
- bench start &
|
|
- sleep 10
|
|
|
|
script:
|
|
- set -e
|
|
- bench --verbose run-tests
|
|
- sleep 5
|
|
- bench --verbose run-tests --ui-tests
|