Mercurial > p > roundup > code
diff run_tests.py @ 3676:1343ae27dde9
Don't allow docstrings of test override the description printed for the test.
| author | Ralf Schlatterbeck <schlatterbeck@users.sourceforge.net> |
|---|---|
| date | Thu, 17 Aug 2006 12:54:35 +0000 |
| parents | 6fe75dcb0b34 |
| children | c8b0a23ba38d |
line wrap: on
line diff
--- a/run_tests.py Thu Aug 17 09:32:46 2006 +0000 +++ b/run_tests.py Thu Aug 17 12:54:35 2006 +0000 @@ -184,6 +184,8 @@ self._progressWithNames = 0 self._count = count self._testtimes = {} + # docstrings for tests don't override test-descriptions: + self.descriptions = False if progress and verbosity == 1: self.dots = 0 self._progressWithNames = 1
