From 4f09a85aca88ffd61755ae028ebafc201351fecc Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Sun, 16 Feb 2025 14:52:55 +0100 Subject: [PATCH] [3.12] gh-130185: Fix unintentionally skipped tests in `test_functools` (GH-130186) (#130189) gh-130185: Fix unintentionally skipped tests in `test_functools` (GH-130186) (cherry picked from commit 73d03005b028eb6e4d1a643f3ca7a1f5ff2040fc) Co-authored-by: Tomas R --- Lib/test/test_functools.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/Lib/test/test_functools.py b/Lib/test/test_functools.py index dadcd04394b..2a65b2cca5c 100644 --- a/Lib/test/test_functools.py +++ b/Lib/test/test_functools.py @@ -1313,6 +1313,16 @@ class TestCache: self.module._CacheInfo(hits=0, misses=0, maxsize=None, currsize=0)) +class TestCachePy(TestCache, unittest.TestCase): + module = py_functools + + +@unittest.skipUnless(c_functools, 'requires the C _functools module') +class TestCacheC(TestCache, unittest.TestCase): + if c_functools: + module = c_functools + + class TestLRU: def test_lru(self):