From 17739d718901a10f7ec0aaf9a6d53141294a347d Mon Sep 17 00:00:00 2001 From: Cédric Ollivier Date: Tue, 9 Nov 2021 11:22:02 +0100 Subject: Leverage latest pylint features MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It adds encoding in all open call and leverage f-strings. Change-Id: I70ccd2bfcadae44929d5874f98fa3bf4ff644488 Signed-off-by: Cédric Ollivier --- xtesting/tests/unit/core/test_behaveframework.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'xtesting/tests/unit/core/test_behaveframework.py') diff --git a/xtesting/tests/unit/core/test_behaveframework.py b/xtesting/tests/unit/core/test_behaveframework.py index 7cfcdec7..cd39f139 100644 --- a/xtesting/tests/unit/core/test_behaveframework.py +++ b/xtesting/tests/unit/core/test_behaveframework.py @@ -119,10 +119,10 @@ class RunTesting(unittest.TestCase): html_file = os.path.join(self.test.res_dir, 'output.html') args_list = [ '--junit', - '--junit-directory={}'.format(self.test.res_dir), - '--format=json', '--outfile={}'.format(self.test.json_file), + f'--junit-directory={self.test.res_dir}', + '--format=json', f'--outfile={self.test.json_file}', '--format=behave_html_formatter:HTMLFormatter', - '--outfile={}'.format(html_file), + f'--outfile={html_file}', '--tags='+','.join(self.tags)] args_list.append('foo') args[0].assert_called_once_with(args_list) @@ -152,10 +152,10 @@ class RunTesting(unittest.TestCase): html_file = os.path.join(self.test.res_dir, 'output.html') args_list = [ '--junit', - '--junit-directory={}'.format(self.test.res_dir), - '--format=json', '--outfile={}'.format(self.test.json_file), + f'--junit-directory={self.test.res_dir}', + '--format=json', f'--outfile={self.test.json_file}', '--format=behave_html_formatter:HTMLFormatter', - '--outfile={}'.format(html_file), + f'--outfile={html_file}', '--tags='+','.join(self.tags)] if console: args_list += ['--format=pretty', '--outfile=-'] -- cgit 1.2.3-korg