.travis.yml 391 B

123456789101112131415161718192021
  1. # Config file for automatic testing at travis-ci.org
  2. language: python
  3. python:
  4. - "3.5"
  5. - "3.4"
  6. - "3.3"
  7. - "3.2"
  8. - "2.7"
  9. - "2.6"
  10. - "pypy"
  11. # command to install dependencies:
  12. # install: pip install -r requirements.txt
  13. # command to run tests:
  14. script: python setup.py test
  15. # migrate to container-based travis.ci: http://docs.travis-ci.com/user/migrating-from-legacy
  16. sudo: false