summaryrefslogtreecommitdiffstats
path: root/testsuite
diff options
context:
space:
mode:
authorAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2016-09-05 17:38:02 +0200
committerAlexander Sulfrian <alexander.sulfrian@fu-berlin.de>2016-09-12 16:22:28 +0200
commit1b37c187acc99e8d4410926ae73d8efb94d79b98 (patch)
treef563db0f5f9fc487311b0d094133328db88cfa0a /testsuite
parent007d56a7044b273bf974357149cff616d82ac23f (diff)
downloadbcfg2-1b37c187acc99e8d4410926ae73d8efb94d79b98.tar.gz
bcfg2-1b37c187acc99e8d4410926ae73d8efb94d79b98.tar.bz2
bcfg2-1b37c187acc99e8d4410926ae73d8efb94d79b98.zip
testsuite: Increase verbosity of management commands
This helps debugging on errors.
Diffstat (limited to 'testsuite')
-rw-r--r--testsuite/common.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuite/common.py b/testsuite/common.py
index 6cb880226..944471ade 100644
--- a/testsuite/common.py
+++ b/testsuite/common.py
@@ -240,9 +240,9 @@ class DBModelTestCase(Bcfg2TestCase):
# Create new
if django.VERSION[0] == 1 and django.VERSION[1] < 7:
django.core.management.call_command('syncdb', interactive=False,
- verbosity=0)
+ verbosity=1)
django.core.management.call_command('migrate', interactive=False,
- verbosity=0)
+ verbosity=1)
# Check if database exists now
self.assertTrue(os.path.exists(dbfile))