From: Andrew Nicols Date: Wed, 12 Nov 2014 02:37:38 +0000 (+0800) Subject: Add pretty format to Behat output X-Git-Tag: v1.5.1~16^2 X-Git-Url: https://git.cameron1729.xyz/?a=commitdiff_plain;h=09fa657e48d5f00e1e06139a647c07df781e99b1;p=mdk.git Add pretty format to Behat output --- 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')))