Plex plugin to to play various online streams (mostly Latvian).

.travis.yml 522B

12345678910111213141516171819202122232425
  1. sudo: false
  2. language: python
  3. python:
  4. - "2.6"
  5. - "2.7"
  6. - "3.3"
  7. - "3.4"
  8. - pypy
  9. - pypy3
  10. matrix:
  11. include:
  12. # Travis nightly look to be 3.5.0a4, b3 is out and the syntax error we see
  13. # doesn't happen in trunk.
  14. - python: "nightly"
  15. env: SKIP_DOCS=1
  16. install:
  17. - pip install -U pip
  18. - pip install -U wheel setuptools
  19. - pip install -U .[docs,test]
  20. - pip list
  21. - python --version
  22. script:
  23. - unit2
  24. - if [ -z "$SKIP_DOCS" ]; then python setup.py build_sphinx; fi
  25. - rst2html.py --strict README.rst README.html