improve error reporting for setup issues

pull/191/head
Chris Veilleux 2019-07-03 15:37:58 -05:00
parent a096381333
commit 083c298811
1 changed files with 3 additions and 2 deletions

View File

@ -62,9 +62,10 @@ def before_scenario(context, _):
_add_skills(context)
_add_device(context)
_add_device_skills(context)
except:
except Exception as e:
import traceback
print(traceback.print_exc())
print(traceback.format_exc())
print(traceback.format_stack())
def after_scenario(context, _):