.travis.yml 295 B

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