seitime-frappe/.travis.yml
Shivam Mishra dad1c04aae feat: Deprecate In App Help (#6801)
* [feat] Removed help from toolbar.js

* [feat] Removed help from global search

* [feat] redirected search in help to docs website

[] Url needs to be configurable from hooks

* [Feat] Removed search functions for help

* [fix] Help links not redirecting

* [feat] Modified "Help" menu on desk toolbar

* [feat] Removed docs search from desk toolbar

* Removed Search from toolbar.js

* Removed /search_docs from website

* Removed help from migrate

* Deprecated help from command utils

* Removed help.py

* Removed help setup from travis.yml

* [fix] Fixed formatting issues

* [fix] Deleted commented code from toolbar.js

* [fix] Minor link fix

* [Fix] Fixed a small typo

* Removed docs_app dependency from pathces

* [fix] Removed commented code

* [fix] Typo in function name

* fix: remove commented code

* [fix] Changed 'Deprecated' message to 'Removed'

Removed will be the correct term instead of deprecated
2019-01-29 14:59:39 +05:30

44 lines
No EOL
635 B
YAML

language: python
dist: trusty
sudo: required
python:
- 2.7
- 3.6
env:
- DB=mariadb
- DB=postgres
- TEST_TYPE=ui
services:
- mysql
addons:
postgresql: "9.5"
hosts:
- test_site
- test_site_postgres
- test_site_ui
matrix:
exclude:
- python: 2.7
env: DB=postgres
- python: 3.6
env: TEST_TYPE=ui
install:
- $TRAVIS_BUILD_DIR/.travis/install.sh
before_script:
- cd ~/frappe-bench
- sed -i 's/9000/9001/g' sites/common_site_config.json
- bench start &
- sleep 10
script:
- $TRAVIS_BUILD_DIR/.travis/run-tests.sh
after_script:
- coveralls -b apps/frappe -d ../../sites/.coverage