diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2017-10-27 13:17:36 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2017-10-27 13:17:36 (GMT) |
commit | bb78898224c99cbf9c6beed8706869f9b66967c2 (patch) | |
tree | 96ec8973be36e04d285b07d2c17e92d104cc0eb4 | |
parent | 37d1d967eed4018ef397dd9d1515683e5b6b55e7 (diff) | |
download | cpython-bb78898224c99cbf9c6beed8706869f9b66967c2.zip cpython-bb78898224c99cbf9c6beed8706869f9b66967c2.tar.gz cpython-bb78898224c99cbf9c6beed8706869f9b66967c2.tar.bz2 |
bpo-31174: Improve the code of test_tools.test_unparse. (GH-4146) (#4148)
(cherry picked from commit 7351f9e5a91c403d15c6d556f9989b443f1296f9)
-rw-r--r-- | Lib/test/test_tools/test_unparse.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Lib/test/test_tools/test_unparse.py b/Lib/test/test_tools/test_unparse.py index bab49df..f3386f5 100644 --- a/Lib/test/test_tools/test_unparse.py +++ b/Lib/test/test_tools/test_unparse.py @@ -268,12 +268,13 @@ class DirectoryTestCase(ASTTestCase): # test directories, relative to the root of the distribution test_directories = 'Lib', os.path.join('Lib', 'test') - def get_names(self): - if DirectoryTestCase.NAMES is not None: - return DirectoryTestCase.NAMES + @classmethod + def get_names(cls): + if cls.NAMES is not None: + return cls.NAMES names = [] - for d in self.test_directories: + for d in cls.test_directories: test_dir = os.path.join(basepath, d) for n in os.listdir(test_dir): if n.endswith('.py') and not n.startswith('bad'): @@ -282,10 +283,9 @@ class DirectoryTestCase(ASTTestCase): # Test limited subset of files unless the 'cpu' resource is specified. if not test.support.is_resource_enabled("cpu"): names = random.sample(names, 10) - # bpo-31174: Store the names sample to always test the same files. - # It prevents false alarms when hunting reference leaks. - DirectoryTestCase.NAMES = names - + # bpo-31174: Store the names sample to always test the same files. + # It prevents false alarms when hunting reference leaks. + cls.NAMES = names return names def test_files(self): |