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 507B

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