From e9aabb87e54b8623f3cd8662fad123840fdeb2fd Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 18 Dec 2025 21:47:16 +0100 Subject: [PATCH] Exclude temporary code examples from coverage --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 6b607cd68..691eb284c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -201,7 +201,9 @@ dynamic_context = "test_function" omit = [ "docs_src/response_model/tutorial003_04_py39.py", "docs_src/response_model/tutorial003_04_py310.py", - "docs_src/dependencies/tutorial008_an_py39.py", + "docs_src/dependencies/tutorial008_an_py39.py", # difficult to mock + "docs_src/dependencies/tutorial013_an_py310.py", # temporary code example? + "docs_src/dependencies/tutorial014_an_py310.py", # temporary code example? ] [tool.coverage.report]