.travis.yml 259 B

123456789101112
  1. language: python
  2. python:
  3. - "3.4"
  4. - "2.7"
  5. - "pypy"
  6. # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
  7. install: pip install -r requirements-dev.txt
  8. # command to run tests, e.g. python setup.py test
  9. script: make check