I have a Django project that I am trying to test. It had an app named 'people' that I have replaced with another app 'participant'. I have changed all of the settings needed, but why I runpython manage.py test
, it won't run the tests because it can't import people
, because I deleted it.
Is there something I can delete or reset to remove all of the memory of previous test runs? Everything else works fine.