diff options
author | Utkarsh Upadhyay <mail@musicallyut.in> | 2017-07-02 12:46:04 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-07-02 12:46:04 (GMT) |
commit | 98b6bc3bf72532b784a1c1fa76eaa6026a663e44 (patch) | |
tree | 71c47739cd897b13df0ba1086470f9cd0f1eebb0 /Lib/test/test_datetime.py | |
parent | 8a8d28501fc8ce25926d168f1c657656c809fd4c (diff) | |
download | cpython-98b6bc3bf72532b784a1c1fa76eaa6026a663e44.zip cpython-98b6bc3bf72532b784a1c1fa76eaa6026a663e44.tar.gz cpython-98b6bc3bf72532b784a1c1fa76eaa6026a663e44.tar.bz2 |
bpo-30822: Fix testing of datetime module. (#2530)
Only C implementation was tested.
Diffstat (limited to 'Lib/test/test_datetime.py')
-rw-r--r-- | Lib/test/test_datetime.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py index 242e1bb..2d00b56 100644 --- a/Lib/test/test_datetime.py +++ b/Lib/test/test_datetime.py @@ -20,7 +20,7 @@ test_suffixes = ["_Pure", "_Fast"] # XXX(gb) First run all the _Pure tests, then all the _Fast tests. You might # not believe this, but in spite of all the sys.modules trickery running a _Pure # test last will leave a mix of pure and native datetime stuff lying around. -test_classes = [] +all_test_classes = [] for module, suffix in zip(test_modules, test_suffixes): test_classes = [] @@ -33,7 +33,8 @@ for module, suffix in zip(test_modules, test_suffixes): suit = cls() test_classes.extend(type(test) for test in suit) for cls in test_classes: - cls.__name__ = name + suffix + cls.__name__ += suffix + cls.__qualname__ += suffix @classmethod def setUpClass(cls_, module=module): cls_._save_sys_modules = sys.modules.copy() @@ -46,9 +47,10 @@ for module, suffix in zip(test_modules, test_suffixes): sys.modules.update(cls_._save_sys_modules) cls.setUpClass = setUpClass cls.tearDownClass = tearDownClass + all_test_classes.extend(test_classes) def test_main(): - run_unittest(*test_classes) + run_unittest(*all_test_classes) if __name__ == "__main__": test_main() |