.travis.yml 305 B

1234567891011121314
  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. # command to install dependencies
  9. install:
  10. - pip install -r test_requirements.txt --use-mirrors
  11. # command to run tests
  12. script:
  13. - python setup.py test -q