hundreds-lion-13128
12/21/2024, 6:41 AMsqlite3.DatabaseError: database disk image is malformed
When running pants check
on my mid-size Python codebase on CI.
I can't ssh into my ssh, sadly. And it does have caching, but shouldn't bee accessed by multiple jobs at the same time.broad-processor-92400
12/23/2024, 12:44 AMhundreds-lion-13128
01/06/2025, 12:13 PMbroad-processor-92400
01/06/2025, 10:11 PM[mypy].args = ["--verbose", "--show-traceback]
to pants.toml to see if mypy itself can tell us anything more (https://www.pantsbuild.org/prerelease/reference/subsystems/mypy#args)
• Do some introspection of the persistent caches, e.g. sha256sum ~/.cache/pants/named_caches/mypy_cache/*/*/cache.db
at various points of the CI flow and check that the values match, and/or sqlite ...
invocations to validate the files externally
• Temporarily replace the built-in mypy backend with a local plugin (i.e. all the code so we can edit it), and hack in more validationcurved-manchester-66006
01/07/2025, 8:16 PM