[Answer]-Optimal way of including test file dependencies in a Python package

1👍

If it’s part of a Django reusable app – do you want users to run manage.py test yourapp and have the tests pass?

If so, you probably want to distribute the test image. If not, you probably don’t want to distribute it at all, so you can just remove it from MANIFEST.in.

Leave a comment