Skip to content

Commit d057020

Browse files
authoredAug 16, 2024··
remove generate_compilation_database (#51)
1 parent a7c0c88 commit d057020

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎tests/test_clang_tidy.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,8 @@ def generate_compilation_database():
1818
(['--checks="boost-*"', '--version=16'], 1),
1919
),
2020
)
21-
def test_run_clang_tidy_valid(args, expected_retval, generate_compilation_database):
21+
def test_run_clang_tidy_valid(args, expected_retval):
2222
# copy test file to tmp_path to prevent modifying repo data
23-
generate_compilation_database
2423
test_file = Path("testing/main.c")
2524
test_file.write_bytes(Path("testing/main.c").read_bytes())
2625
ret, output = run_clang_tidy(args + [str(test_file)])

0 commit comments

Comments
 (0)
Please sign in to comment.