From e3cb5d4f1980b6ed1cbfd426bb96ce2041015737 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Fri, 2 Dec 2022 11:55:35 -0300 Subject: [PATCH] Update changelog/10525.bugfix.rst --- changelog/10525.bugfix.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/changelog/10525.bugfix.rst b/changelog/10525.bugfix.rst index 65a981ee4..b9c9d8377 100644 --- a/changelog/10525.bugfix.rst +++ b/changelog/10525.bugfix.rst @@ -1 +1 @@ -Make classmethods discoverable. Same logic as staticmethods. +Test methods decorated with ``@classmethod`` can now be discovered as tests, following the same rules as normal methods. This fills the gap that ``@staticmethod``s were discoverable as tests but not ``@classmethod``s.