From afcc1031df95089440aa5d11d6474e100da25df5 Mon Sep 17 00:00:00 2001 From: Tony Meyer Date: Fri, 22 Sep 2023 15:50:36 +1200 Subject: [PATCH] Ensure we don't backslide on the static checks. --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 00d8c9efd..38d16037d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,9 @@ per-file-ignores = ["test/*:D100,D101,D102,D103,D104"] docstring-convention = "google" [tool.pyright] -include = ["ops/*.py", "ops/_private/*.py"] +include = ["ops/*.py", "ops/_private/*.py", + "test/test_log.py" +] pythonVersion = "3.8" # check no python > 3.8 features are used pythonPlatform = "All" typeCheckingMode = "strict"