From d18a0595f0906204c3625fb84a0ac788755220c1 Mon Sep 17 00:00:00 2001 From: Alexander Sulfrian Date: Wed, 17 Aug 2016 20:49:32 +0200 Subject: testsuite: Ignore failing syncdb Since we have migrations for Bcfg2.Server syncdb fails for every call but the first one with a ImproperlyConfigured exception because it cannot find Bcfg2.Reporting. We simply ignore this and all test are working. --- testsuite/common.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/testsuite/common.py b/testsuite/common.py index 47e3bfb14..9db2cb94a 100644 --- a/testsuite/common.py +++ b/testsuite/common.py @@ -221,10 +221,14 @@ class DBModelTestCase(Bcfg2TestCase): if self.models: import django import django.core.management + from django.core.exceptions import ImproperlyConfigured if django.VERSION[0] == 1 and django.VERSION[1] < 7: - django.core.management.call_command('syncdb', interactive=False, - verbosity=0) + try: + django.core.management.call_command('syncdb', interactive=False, + verbosity=0) + except ImproperlyConfigured: + pass django.core.management.call_command('migrate', interactive=False, verbosity=0) -- cgit v1.2.3-1-g7c22