From 09fa657e48d5f00e1e06139a647c07df781e99b1 Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Wed, 12 Nov 2014 10:37:38 +0800 Subject: [PATCH] Add pretty format to Behat output --- mdk/commands/behat.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mdk/commands/behat.py b/mdk/commands/behat.py index b2ee316..2f3b3e6 100644 --- a/mdk/commands/behat.py +++ b/mdk/commands/behat.py @@ -236,8 +236,8 @@ class BehatCommand(Command): cmd.append('--tags ~@javascript') if args.faildump: - cmd.append('--format="progress,progress,html,failed"') - cmd.append('--out=",{0}/progress.txt,{0}/status.html,{0}/failed.txt"'.format(outputDir)) + cmd.append('--format="progress,progress,pretty,html,failed"') + cmd.append('--out=",{0}/progress.txt,{0}/pretty.txt,{0}/status.html,{0}/failed.txt"'.format(outputDir)) cmd.append('--config=%s/behat/behat.yml' % (M.get('behat_dataroot'))) -- 2.11.0