mirror of
https://github.com/python/cpython.git
synced 2025-10-06 07:02:33 +00:00
[3.6] bpo-30822: Fix testing of datetime module. (GH-2530) (GH-2783) (#2816)
* [3.6] bpo-30822: Fix testing of datetime module. (GH-2530) (GH-2783) Only C implementation was tested. (cherry picked from commit287c5594ed
) * [3.6] bpo-30822: Fix testing of datetime module. (GH-2530) (GH-2783) Only C implementation was tested.. (cherry picked from commit287c5594ed
)
This commit is contained in:
parent
0dbfab2ac7
commit
c52cea4954
4 changed files with 15 additions and 9 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue