.travis.yml 315 B

123456789101112131415
  1. # Configuration for Travis CI
  2. # !!! When making changes, make sure to also edit tox.ini !!!
  3. language: python
  4. python:
  5. - "2.6"
  6. - "2.7"
  7. - "3.2"
  8. - "3.3"
  9. # command to install dependencies
  10. install:
  11. - pip install -r test_requirements.txt --use-mirrors
  12. # command to run tests
  13. script:
  14. - python setup.py test -q