.travis.yml 482B

123456789101112131415161718192021222324
  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
  8. install:
  9. - "make"
  10. - pip install coveralls
  11. script:
  12. - "make tests"
  13. - "make robot"
  14. - "make styles"
  15. - make coverage
  16. after_success:
  17. coveralls
  18. notifications:
  19. irc:
  20. channels:
  21. - "irc.freenode.org#searx"
  22. template:
  23. - "%{repository}/#%{build_number}/%{branch} (%{author}): %{message} %{build_url}"
  24. on_success: change