From 4be20c75122bcacf94ccf329c6c857862bb9206f Mon Sep 17 00:00:00 2001 From: Rubel Date: Thu, 30 Nov 2023 22:19:07 +0100 Subject: [PATCH] CI --- pynxtools/dataconverter/convert.py | 2 +- tests/dataconverter/test_helpers.py | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pynxtools/dataconverter/convert.py b/pynxtools/dataconverter/convert.py index 854ce3302..e21db1b39 100644 --- a/pynxtools/dataconverter/convert.py +++ b/pynxtools/dataconverter/convert.py @@ -60,7 +60,7 @@ def get_names_of_all_readers() -> List[str]: return all_readers -# pylint: disable=too-many-arguments,too-many-locals,W1203 +# pylint: disable=too-many-arguments,too-many-locals,W1203,R0912,W0613 def convert(input_file: Tuple[str], reader: str, nxdl: str, diff --git a/tests/dataconverter/test_helpers.py b/tests/dataconverter/test_helpers.py index c7510bc61..59eaf89b4 100644 --- a/tests/dataconverter/test_helpers.py +++ b/tests/dataconverter/test_helpers.py @@ -166,6 +166,7 @@ def fixture_filled_test_data(template, tmp_path): TEMPLATE["optional"]["/@default"] = "Some NXroot attribute" +# pylint: disable=too-many-arguments,broad-exception-caught @pytest.mark.parametrize("data_dict,error_message", [ pytest.param( alter_dict(TEMPLATE, "/ENTRY[my_entry]/NXODD_name/int_value", "not_a_num"),