.travis.yml 161 B

12345678910111213141516
  1. language: python
  2. python:
  3. - 3.3
  4. - 3.4
  5. - 3.5
  6. install:
  7. - pip install -e .
  8. - pip install flake8
  9. script:
  10. - py.test -s
  11. - flake8 radicale
  12. sudo: false