.travis.yml 271 B

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