.travis.yml 229 B

1234567891011121314
  1. language: python
  2. python:
  3. - "2.7"
  4. - "3.3"
  5. - "3.4"
  6. - "pypy"
  7. install:
  8. - "pip install ."
  9. - "pip install pytest pytest-cov pytest-pep8 coveralls"
  10. script: "py.test"
  11. after_success: "coveralls"
  12. branches:
  13. only:
  14. - master