You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

setup.cfg 433B

1234567891011121314151617181920
  1. [tool:pytest]
  2. testpaths = tests/
  3. norecursedirs = .tox
  4. filterwarnings =
  5. ignore:.*is deprecated.*:Warning:django_webtest.middleware
  6. ignore::DeprecationWarning:sorl.thumbnail.base
  7. [flake8]
  8. exclude = migrations
  9. ignore = F405,W503,E731
  10. max-complexity = 10
  11. max-line-length=119
  12. [isort]
  13. line_length = 79
  14. multi_line_output = 4
  15. balanced_wrapping = true
  16. known_first_party = oscar,tests
  17. use_parentheses = true
  18. skip_glob=*/migrations/*