Fix end-to-end tests.

This commit is contained in:
Dan Helfman
2026-03-30 12:37:42 -07:00
parent 52f9442377
commit 87bfd6e97f
6 changed files with 8 additions and 5 deletions
+2 -1
View File
@@ -44,7 +44,7 @@ namespaces = false
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "--cov-report term-missing:skip-covered --cov=borgmatic --no-cov-on-fail --cov-fail-under=100 --ignore=tests/end-to-end"
addopts = "--cov-report term-missing:skip-covered --cov=borgmatic --no-cov-on-fail --cov-fail-under=100 --ignore=tests/end-to-end --timeout=60"
[tool.ruff]
line-length = 100
@@ -100,6 +100,7 @@ ignore = [
"S404", # subprocess import
"SIM115", # open() without context manager
"SIM905", # split() on literal string
"TRY004", # type check and raise something other than TypeError
]
[tool.ruff.lint.flake8-quotes]