.travis.yml 359 B

123456789101112131415161718
  1. language: python
  2. python:
  3. - "3.4"
  4. - "2.7"
  5. - "pypy"
  6. env:
  7. - "DRF='djangorestframework<3'"
  8. - "DRF='djangorestframework>=3'"
  9. # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
  10. install:
  11. - pip install $DRF
  12. - pip install -r requirements-dev.txt
  13. # command to run tests, e.g. python setup.py test
  14. script: make check