1234567891011121314151617181920212223242526
  1. language: python
  2. python:
  3. - "2.7"
  4. before_install:
  5. - "export DISPLAY=:99.0"
  6. - "sh -e /etc/init.d/xvfb start"
  7. - npm install -g less grunt-cli
  8. - ( cd searx/static/themes/oscar;npm install )
  9. install:
  10. - "make"
  11. - pip install coveralls
  12. script:
  13. - "make flake8"
  14. - "make robot"
  15. - "make styles"
  16. - "make grunt"
  17. - make coverage
  18. after_success:
  19. coveralls
  20. notifications:
  21. irc:
  22. channels:
  23. - "irc.freenode.org#searx"
  24. template:
  25. - "%{repository}/#%{build_number}/%{branch} (%{author}): %{message} %{build_url}"
  26. on_success: change