Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

tox.ini 746B

12345678910111213141516171819202122232425262728293031323334353637
  1. [tox]
  2. envlist = py{27,34,35,36}-django{18,19,110},py33-django18,lint,sandbox
  3. [testenv]
  4. commands = coverage run --parallel -m pytest {posargs}
  5. extras = test
  6. deps =
  7. -r{toxinidir}/requirements.txt
  8. django18: django>=1.8,<1.9
  9. django19: django>=1.9,<1.10
  10. django110: django>=1.10,<1.11
  11. [testenv:coverage-report]
  12. basepython = python3.5
  13. deps = coverage
  14. skip_install = true
  15. commands =
  16. coverage combine
  17. coverage report
  18. [testenv:lint]
  19. basepython = python3.5
  20. deps = flake8
  21. commands =
  22. flake8 src tests setup.py
  23. isort -q --recursive --diff src/ tests/
  24. [testenv:sandbox]
  25. basepython = python3.5
  26. deps =
  27. -r{toxinidir}/requirements.txt
  28. django>=1.10,<1.11
  29. whitelist_externals = make
  30. commands =
  31. make build_sandbox