(dest_dir=THIRDPARTY_DIR)
| 2241 | |
| 2242 | |
| 2243 | def check_about(dest_dir=THIRDPARTY_DIR): |
| 2244 | try: |
| 2245 | subprocess.check_output(f"venv/bin/about check {dest_dir}".split()) |
| 2246 | except subprocess.CalledProcessError as cpe: |
| 2247 | print() |
| 2248 | print("Invalid ABOUT files:") |
| 2249 | print(cpe.output.decode("utf-8", errors="replace")) |
| 2250 | |
| 2251 | |
| 2252 | def find_problems( |
no test coverage detected