From 98896b00356b7ed943268aa9d85c8bd6ce077068 Mon Sep 17 00:00:00 2001 From: Alessandro Candido Date: Tue, 13 Aug 2024 16:18:49 +0200 Subject: [PATCH] test: Whitelist pydantic FieldInfo as well --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 5e7df1a26..4e7d2df8e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -102,7 +102,7 @@ test-docs = "make -C doc doctest" [tool.pylint.master] output-format = "colorized" disable = ["E1123", "E1120", "C0301"] -generated-members = ["qibolab.native.RxyFactory"] +generated-members = ["qibolab.native.RxyFactory, pydantic.fields.FieldInfo"] [tool.pytest.ini_options] testpaths = ['tests/']