.travis.yml 325 B

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