66import pytest
77
88MODULE_DIR = pathlib .Path (__file__ ).parent .absolute ()
9- TEST_CASE_DIR = (
10- MODULE_DIR / "acknowledge_existing_errors_test_cases__snapshots"
11- )
9+ TEST_CASE_DIR = MODULE_DIR / "acknowledge_existing_errors_test_cases__snapshots"
1210
1311
1412@pytest .mark .parametrize (
@@ -77,7 +75,9 @@ def test_given_suppressed_file_linter_does_not_error(
7775
7876
7977@pytest .mark .parametrize ("cmd_args" , [[], ["--aggressive" ]], ids = ["normal" , "aggressive" ])
80- def test_given_folder_with_multiple_files_linter_does_not_error (cmd_args , tmp_path , styleguide_command , chdir ):
78+ def test_given_folder_with_multiple_files_linter_does_not_error (
79+ cmd_args , tmp_path , styleguide_command , chdir
80+ ):
8181 in_dir = MODULE_DIR / "acknowledge_existing_errors_multiple_files" / "input"
8282 test_dir = tmp_path / "input"
8383 shutil .copytree (in_dir , test_dir )
@@ -88,8 +88,9 @@ def test_given_folder_with_multiple_files_linter_does_not_error(cmd_args, tmp_pa
8888 assert output .exit_code in (True , 0 ), f"Error in running:\n { output } "
8989
9090
91-
92- def test_given_folder_with_multiple_files_acknowledged__does_not_error (tmp_path , styleguide_command , chdir ):
91+ def test_given_folder_with_multiple_files_acknowledged__does_not_error (
92+ tmp_path , styleguide_command , chdir
93+ ):
9394 in_dir = MODULE_DIR / "acknowledge_existing_errors_multiple_files" / "input"
9495 test_dir = tmp_path / "input"
9596 shutil .copytree (in_dir , test_dir )
0 commit comments