From 93cc4faa1ac05b778dffa578de88c61b112fd818 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Fri, 31 Oct 2025 15:37:09 +0100 Subject: [PATCH] coverage: disable no-ctracer warning On a BSD vagrant box, it spams us with these warnings... It also works without the c-tracer, just slower. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4f29410a6..64e9ee12e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -264,7 +264,7 @@ labels = ["lint"] [tool.coverage.run] branch = true -disable_warnings = ["module-not-measured"] +disable_warnings = ["module-not-measured", "no-ctracer"] source = ["src/borg"] omit = [ "*/borg/__init__.py",