When I test my Django web application with python manage.py test
, this starts Django's development server and runs the test.
I want to run my Django tests on my production stack. Specifically, I want to use Apache instead of Django's development server. Is there a way to do this?
I've looked through the docs for LiveServerTestCase, but it doesn't seem to be customizable in this regard.