tox.ini 415 B

12345678910111213141516171819202122
  1. [flake8]
  2. exclude =
  3. .pytest_cache,
  4. .git,
  5. __pycache__,
  6. tests/testapp/migrations,
  7. .tox
  8. max-line-length = 88
  9. [tox]
  10. envlist = py{27,36}-django111, py{34,37}-django20, py{35,37}-django21
  11. [testenv]
  12. changedir = tests
  13. commands = pytest --basetemp={envtmpdir} {posargs}
  14. deps =
  15. pillow
  16. psycopg2-binary
  17. django111: Django>=1.11,<2.0
  18. django20: Django>=2.0,<2.1
  19. django21: Django>=2.1,<2.2