Cleanup cache in contrib.sites to prevent test interference -- refs #11505

This commit is contained in:
Thomas Chaumeny 2014-12-09 20:50:45 +01:00 committed by Tim Graham
parent 6a141832ab
commit 3bb78c5e7a
2 changed files with 15 additions and 0 deletions

View file

@ -15,6 +15,14 @@ class Advertisement(models.Model):
class ModelPackageTests(TestCase):
@classmethod
def setUpClass(cls):
super(ModelPackageTests, cls).setUpClass()
# This cleanup is necessary because contrib.sites cache
# makes tests interfere with each other, see #11505
Site.objects.clear_cache()
def test_m2m_tables_in_subpackage_models(self):
"""
Regression for #12168: models split into subpackages still get M2M