From d96c5f79fb233bafeeef4f9b19159c1d4890c159 Mon Sep 17 00:00:00 2001 From: kaliko Date: Mon, 14 Oct 2024 18:30:39 +0200 Subject: [PATCH] Add pytest to pyproject.toml --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 932f9fa0..c4bf56bb 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -46,3 +46,7 @@ packages = ["borgmatic"] [tool.black] line-length = 100 skip-string-normalization = true + +[tool.pytest.ini_options] +testpaths = "tests" +addopts = "--cov-report term-missing:skip-covered --cov=borgmatic --ignore=tests/end-to-end"