setup.cfg 429 B

1234567891011121314151617181920
  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. [tool:isort]
  12. force_single_line = False
  13. include_trailing_comma = True
  14. known_first_party = borgmatic
  15. line_length = 100
  16. multi_line_output = 3
  17. skip = .tox