Skip to content

Commit 5fdcb88

Browse files
committed
Fixed failing test.
1 parent 8b1b486 commit 5fdcb88

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

tests/features/environment.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,8 @@ def after_scenario(context, _):
8585
if hasattr(context, 'cli') and not context.exit_sent:
8686
# Terminate nicely.
8787
context.cli.terminate()
88+
89+
# TODO: uncomment to debug a failure
90+
# def after_step(context, step):
91+
# if step.status == "failed":
92+
# import ipdb; ipdb.set_trace()

tests/features/steps/iocommands.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# -*- coding: utf-8
2+
from __future__ import unicode_literals
23
import os
34
import wrappers
45

tests/features/steps/wrappers.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
# -*- coding: utf-8
2+
from __future__ import unicode_literals
3+
24
import re
35

46

0 commit comments

Comments
 (0)