From 181c1b13b5ecc6aa3c6b9f2ea0be81f166dc09da Mon Sep 17 00:00:00 2001 From: Tony Meyer Date: Fri, 22 Sep 2023 15:56:01 +1200 Subject: [PATCH] Ensure we don't backslide on static checks. --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 00d8c9efd..e65f106d1 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_private.py", +] pythonVersion = "3.8" # check no python > 3.8 features are used pythonPlatform = "All" typeCheckingMode = "strict"