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

1234567891011121314151617181920
  1. [bdist_wheel]
  2. universal=1
  3. [pytest]
  4. python_files=test_*.py *tests.py
  5. testpaths = tests/
  6. [flake8]
  7. exclude = migrations
  8. ignore = F405,W503
  9. max-complexity = 10
  10. max-line-length=99
  11. [isort]
  12. line_length = 79
  13. multi_line_output = 4
  14. balanced_wrapping = true
  15. known_first_party = oscar,tests
  16. use_parentheses = true
  17. skip_glob=*/src/oscar/**/migrations/*.py,*/tests/**/*.py