From 5ae1aab2af9b249330c51b92235c6357b453b8c8 Mon Sep 17 00:00:00 2001 From: Eddie Hebert Date: Sat, 4 May 2013 12:52:38 -0400 Subject: [PATCH] TST: Add nose-ignore-docstring plugin to requirements and setup.cfg So that docstrings can be added for test documentation, but suppress those docstrings in test output by default. --- etc/requirements_dev.txt | 1 + setup.cfg | 5 +---- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/etc/requirements_dev.txt b/etc/requirements_dev.txt index d95ccf8a..bfdaa4c9 100644 --- a/etc/requirements_dev.txt +++ b/etc/requirements_dev.txt @@ -1,6 +1,7 @@ # Testing nose==1.3.0 nose-parameterized==0.2 +nose-ignore-docstring==0.1 # Linting diff --git a/setup.cfg b/setup.cfg index 740ef396..e87d4da3 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,4 @@ [nosetests] verbosity=2 detailed-errors=1 - -# Drop into debugger on failure -#pdb=0 -#pdb-failures=0 +with-ignore-docstrings=1