.travis.yml 594 B

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