.travis.yml 238 B

1234567891011121314151617181920
  1. language: python
  2. python:
  3. - 2.6
  4. - 2.7
  5. - 3.2
  6. - 3.3
  7. - 3.4
  8. - pypy
  9. install:
  10. - pip install sqlalchemy
  11. - pip install nose-cov
  12. - pip install pam
  13. - pip install requests
  14. - pip install dulwich
  15. script: nosetests
  16. sudo: false