tox.ini 412 B

123456789101112131415161718192021222324
  1. [tox]
  2. envlist =
  3. {py27,py34,pypy,pypy3}-drf{2,3}
  4. [testenv]
  5. basepython =
  6. py27: python2.7
  7. py34: python3.4
  8. pypy: pypy
  9. pypy3: pypy3
  10. setenv =
  11. PYTHONPATH = {toxinidir}:{toxinidir}/multinosetests
  12. commands =
  13. make install-quite
  14. pip freeze
  15. make check
  16. deps =
  17. drf2: djangorestframework<3
  18. drf3: djangorestframework>=3
  19. whitelist_externals =
  20. make
  21. [flake8]
  22. max-line-length = 100