* test(UI): Add UI tests using cypress * test: Add test configuration for travis * fix: Lock redis version * fix: Refactor fill_field command * fix: Rename setup_wizard test to run first * test: Add setup for dashboard service * test: Add build matrix for ui test * test: Add name to each build matrix * test: Only include ui test for an extra build stage * fix: Exclude UI test with python 3.6 * test: Test order * test: Enable developer_mode * test(login): Check session user and not hash * test: Refactor assert * test: Refactor setup wizard test * test: Remove setup wizard test * test: Add blank seed database * test(form): Scroll to top before save * test: Fix form test * test: timeout * test: more wait * test: Remove specific selector * test: Remove wait, delay typing * test: Blur input after typing * test: Wait for form to get dirty * test: Add credentials for frappe org * test: Remove node install step * style: Fix linting issues * fix: List view filters - ToDo: Dont override frappe.route_options if it is already set * test: Dont reload page before test
23 lines
No EOL
815 B
Bash
Executable file
23 lines
No EOL
815 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
sudo rm /etc/apt/sources.list.d/mongodb*.list
|
|
sudo rm /etc/apt/sources.list.d/docker.list
|
|
sudo apt-get install hhvm && rm -rf /home/travis/.kiex/
|
|
sudo apt-get purge -y mysql-common mysql-server mysql-client
|
|
source ~/.nvm/nvm.sh
|
|
nvm install v8.10.0
|
|
|
|
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
|
|
cd ~/ && bench init frappe-bench --python $(which python) --frappe-path $TRAVIS_BUILD_DIR
|
|
cp -r $TRAVIS_BUILD_DIR/test_sites/test_site ~/frappe-bench/sites/
|
|
cp -r $TRAVIS_BUILD_DIR/test_sites/test_site_postgres ~/frappe-bench/sites/
|
|
cp -r $TRAVIS_BUILD_DIR/test_sites/test_site_ui ~/frappe-bench/sites/ |