This seems like a no-brainer, and I'm hesitant to admit that I've spent about two hours trying to find the answer, but I can't figure out how to run project-level tests for a django project.
Just to be clear, running tests for the apps in the project is no problem. I understand './manage.py test', but it doesn't find the project-level tests that I have written.
I tried putting the project-level tests in 'my-django-project/tests.py' and 'my-django-project/tests/testcode.py' but these tests aren't found. What am I missing?