For the test classes in question, I added the following decorator:
from django.conf import settings @unittest.skipIf(getattr(settings,'SKIP_SELENIUM_TESTS', False), "Skipping Selenium tests")
Then, to skip these tests, add to the settings file: SKIP_SELENIUM_TESTS = True
This can be easily ported to a subclass of LiveServerTestCase or a simple decorator. If I had it in more than one place, it would be already.
source share