setup.cfg 359 B

123456789101112131415161718
  1. [metadata]
  2. description-file=README.md
  3. [tool:pytest]
  4. testpaths = tests
  5. addopts = --cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end
  6. [flake8]
  7. ignore = E501,W503
  8. exclude = *.*/*
  9. [tool:isort]
  10. force_single_line = False
  11. include_trailing_comma = True
  12. known_first_party = borgmatic
  13. line_length = 100
  14. multi_line_output = 3
  15. skip = .tox