From f2cd0bbc970d6448d539200c50f52196524b615d Mon Sep 17 00:00:00 2001 From: Calen Pennington Date: Wed, 17 Apr 2013 10:34:48 -0400 Subject: [PATCH] Add comment about enabling pdb in tests Uncommenting the pdb=1 line will cause pdb to open on every test failure, allowing immediate debugging of the failure case --- setup.cfg | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index e46f3858f4..9feac06260 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,4 +1,7 @@ [nosetests] logging-clear-handlers=1 with-xunit=1 -rednose=1 \ No newline at end of file +rednose=1 + +# Uncomment the following line to open pdb when a test fails +pdb=1 \ No newline at end of file