From c68f9fb87868c45fcadcc942ce4a35f10ff2f7ea Mon Sep 17 00:00:00 2001 From: Federico Caselli Date: Sat, 18 Apr 2020 18:10:59 +0200 Subject: Enable pypy tests on github workflow Fixes: #5223 Change-Id: I0952e54ed9af2952ea340be1945311376ffc1ad2 --- test/base/test_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/base/test_utils.py') diff --git a/test/base/test_utils.py b/test/base/test_utils.py index d5dece9a6..d765a4613 100644 --- a/test/base/test_utils.py +++ b/test/base/test_utils.py @@ -389,7 +389,8 @@ class WrapCallableTest(fixtures.TestBase): lambda: my_functools_default(), my_functools_default ) eq_(c.__name__, "partial") - eq_(c.__doc__, my_functools_default.__call__.__doc__) + if not compat.pypy: # pypy fails this check + eq_(c.__doc__, my_functools_default.__call__.__doc__) eq_(c(), 5) -- cgit v1.2.1