Since Django 1.11, the option --liveserver was removed from the manage.py test command.
I was using this option to allow the liveserver to be reach from the ip address of the machine rather than the localhost with the following command:
./manage.py test --liveserver=0.0.0.0:8000
Unfortunately, this option is gone and I'm looking for a new solution to allow my Docker Selenium image to access my LiveServerTestCase during the tests.