From bf1a82cf1cb4293e0958658efc34903c87cdda65 Mon Sep 17 00:00:00 2001 From: frans Date: Thu, 10 Sep 2015 11:23:00 +0200 Subject: [PATCH] nosetests trace snippet --- snippets/python.snippets | 2 ++ 1 file changed, 2 insertions(+) diff --git a/snippets/python.snippets b/snippets/python.snippets index faf144c..0e1f624 100644 --- a/snippets/python.snippets +++ b/snippets/python.snippets @@ -225,3 +225,5 @@ snippet kwargs **kwargs${1:,}${0} snippet akw *args, **kwargs${1:,}${0} +snippet nosetrace + from nose.tools import set_trace; set_trace()