pyproject.toml 240 B

1234567891011121314
  1. [tool.pytest.ini_options]
  2. markers = [
  3. "slow: marks tests as slow",
  4. ]
  5. [tool.isort]
  6. profile = "black"
  7. line_length = 79
  8. honor_noqa = true
  9. src_paths = ["s3transfer", "tests"]
  10. [tool.black]
  11. line-length = 79
  12. skip_string_normalization = true