(tmp_path)
| 48 | assert stdout.find('Checking %s ...' % file2) >= 0 |
| 49 | |
| 50 | def test_local_path_force(tmp_path): |
| 51 | proj_dir = tmp_path / 'proj2' |
| 52 | shutil.copytree(__proj_dir, proj_dir) |
| 53 | __create_compile_commands(proj_dir) |
| 54 | ret, stdout, _ = cppcheck(['--project=compile_commands.json', '--force'], cwd=proj_dir) |
| 55 | assert ret == 0, stdout |
| 56 | assert stdout.find('AAA') >= 0 |
| 57 | |
| 58 | def test_local_path_maxconfigs(tmp_path): |
| 59 | proj_dir = tmp_path / 'proj2' |
nothing calls this directly
no test coverage detected