From 3208f8f4dc49c9e60277de431414edd5bb1818a6 Mon Sep 17 00:00:00 2001 From: Mathieu Benoit Date: Mon, 23 Jan 2023 23:26:01 -0500 Subject: [PATCH] =?UTF-8?q?[UPD]=C2=A0format=20script=20python?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/ide/pycharm_configuration.py | 4 +++- script/test/run_parallel_test.py | 7 +++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/script/ide/pycharm_configuration.py b/script/ide/pycharm_configuration.py index e943162..0d197e7 100755 --- a/script/ide/pycharm_configuration.py +++ b/script/ide/pycharm_configuration.py @@ -324,7 +324,9 @@ def add_configuration(dct_xml, file_name, config): conf_full["@folderName"] = conf_folder lst_configuration_full.insert(0, conf_full) else: - _logger.info(f"Configuration already exist: '{s_unique_key}'") + _logger.info( + f"Configuration already exist: '{s_unique_key}'" + ) else: _logger.error(f"Cannot read file '{PATH_DEFAULT_CONFIGURATION}'") return has_change diff --git a/script/test/run_parallel_test.py b/script/test/run_parallel_test.py index dd8c093..a630f4d 100755 --- a/script/test/run_parallel_test.py +++ b/script/test/run_parallel_test.py @@ -692,13 +692,16 @@ def check_git_change(): run_command( "./script/code_generator/check_git_change_code_generator.sh", "./addons/TechnoLibre_odoo-code-generator-template", - test_name="Init check_git_change TechnoLibre_odoo-code-generator-template", + test_name=( + "Init check_git_change" + " TechnoLibre_odoo-code-generator-template" + ), ), run_command( "./script/code_generator/check_git_change_code_generator.sh", "./addons/OCA_server-tools", test_name="Init check_git_change OCA_server-tools", - ) + ), ] commands = asyncio.gather(*task_list) tpl_result = loop.run_until_complete(commands)