From d181f8af3311e9c654399597f714c6548429d67c Mon Sep 17 00:00:00 2001 From: Tony Meyer Date: Fri, 22 Sep 2023 16:01:26 +1200 Subject: [PATCH] Avoid backsliding on static checks. --- pyproject.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 00d8c9efd..adb917e0b 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_infra.py", +] pythonVersion = "3.8" # check no python > 3.8 features are used pythonPlatform = "All" typeCheckingMode = "strict"