tox.ini 357 B

12345678910111213141516171819202122232425262728293031
  1. [tox]
  2. envlist = flake8
  3. [testenv]
  4. deps =
  5. pytest
  6. moto
  7. commands = pytest -vv
  8. [testenv:flake8]
  9. basepython = python3
  10. deps =
  11. flake8
  12. pep8-naming
  13. commands =
  14. flake8 .
  15. [flake8]
  16. ignore = W503
  17. exclude =
  18. .tox,
  19. .git,
  20. __pycache__,
  21. build,
  22. dist,
  23. *.pyc,
  24. *.egg-info,
  25. .cache,
  26. .eggs,
  27. examples/
  28. max-line-length = 80