From: Raymond Hettinger Date: Tue, 17 Aug 2004 16:34:51 +0000 (+0000) Subject: There are no longer any special case test skips. X-Git-Tag: v2.4a3~217 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f04d8a88989f04b8ccb7ca4992190d0eff4352a1;p=python There are no longer any special case test skips. --- diff --git a/Lib/test/test_decimal.py b/Lib/test/test_decimal.py index 6c8dc6bc4d..8711e4e6a9 100644 --- a/Lib/test/test_decimal.py +++ b/Lib/test/test_decimal.py @@ -298,9 +298,6 @@ class DecimalTest(unittest.TestCase): for filename in os.listdir(dir): if '.decTest' not in filename: continue - ## XXX buildout to include integer and trim - if 'integer' in filename or 'trim' in filename: - continue head, tail = filename.split('.') tester = lambda self, f=filename: self.eval_file(dir + f) setattr(DecimalTest, 'test_' + head, tester)