setup.cfg 475 B

12345678910111213141516171819202122
  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. filterwarnings =
  7. ignore:Coverage disabled.*:pytest.PytestWarning
  8. [flake8]
  9. ignore = E501,W503
  10. exclude = *.*/*
  11. multiline-quotes = '''
  12. docstring-quotes = '''
  13. [tool:isort]
  14. force_single_line = False
  15. include_trailing_comma = True
  16. known_first_party = borgmatic
  17. line_length = 100
  18. multi_line_output = 3
  19. skip = .tox