From 67390e6cdf9ff5a56e914e9e20faf8d630488561 Mon Sep 17 00:00:00 2001 From: Steven Bal Date: Mon, 2 Dec 2024 10:59:26 +0100 Subject: [PATCH] :green_heart: [#4788] Ignore ConfigurationStep with pyright in CI currently django_model_refs are not recognized as attributes on the model, an upstream issue has been created for this --- pyright.pyproject.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pyright.pyproject.toml b/pyright.pyproject.toml index 7fa2502384..741b6fb349 100644 --- a/pyright.pyproject.toml +++ b/pyright.pyproject.toml @@ -52,6 +52,8 @@ exclude = [ "src/openforms/formio/formatters/tests/", "src/openforms/registrations/contrib/zgw_apis/tests/test_backend_partial_failure.py", "src/openforms/registrations/contrib/zgw_apis/tests/test_utils.py", + # setup_configuration typing doesn't work for `django_model_refs` yet (https://github.com/maykinmedia/django-setup-configuration/issues/25) + "src/openforms/contrib/objects_api/setup_configuration/steps.py", ] ignore = []