Skip to content

Commit

Permalink
show according feature path for every ran feature
Browse files Browse the repository at this point in the history
  • Loading branch information
timofurrer committed Sep 21, 2015
1 parent cc4d496 commit ffd23d1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion radish/extensions/console_writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,10 +78,11 @@ def console_writer_before_each_feature(feature):

leading = "\n " if feature.description else ""

output += "{}{}: {}{}{}".format(
output += "{}{}: {} # {}{}{}".format(
get_id_sentence_prefix(feature, colorful.bold_cyan),
colorful.bold_white(feature.keyword),
colorful.bold_white(feature.sentence),
colorful.bold_black(feature.path),
leading,
colorful.white("\n ".join(feature.description))
)
Expand Down

0 comments on commit ffd23d1

Please sign in to comment.