Using Pytest in Django projects
A friend asked me about this recently, so I thought I’d write up what I do. First, use Pytest. It is good. It is your friend. It makes running tests a dee-lite. The builtin Django test runner is fine, but I much prefer writing and configuring Pytest. Next: where do I put my tests? I’ve …