Faster migration tests
Published:Almost invariably when I start to work at a new company, I look at the project configuration and find something like this:
[tool.coverage.run]
branch = true
omit = ["**/migrations/*"]
[tool.ruff]
exclude = ["**/migrations/*"]
My suspicion about how prevalent this is is confirmed by GitHub Copilot suggesting it to me the …