mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-07-31 10:58:21 -07:00
dev-python/pluggy: remove unused patch
Package-Manager: Portage-2.3.96, Repoman-2.3.22 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger@gmail.com> Signed-off-by: Aaron Bauman <bman@gentoo.org>
This commit is contained in:
committed by
Aaron Bauman
parent
3337a7e797
commit
2796f8a5c5
@@ -1,19 +0,0 @@
|
||||
diff --git a/testing/test_helpers.py b/testing/test_helpers.py
|
||||
index 846b0a1..89a52b1 100644
|
||||
--- a/testing/test_helpers.py
|
||||
+++ b/testing/test_helpers.py
|
||||
@@ -1,3 +1,4 @@
|
||||
+import platform
|
||||
from pluggy.hooks import varnames
|
||||
from pluggy.manager import _formatdef
|
||||
|
||||
@@ -27,6 +28,9 @@ def test_varnames_default():
|
||||
|
||||
|
||||
def test_varnames_class():
|
||||
+ # fails under pypy3
|
||||
+ if platform.python_implementation() == 'PyPy':
|
||||
+ return
|
||||
class C(object):
|
||||
def __init__(self, x):
|
||||
pass
|
||||
Reference in New Issue
Block a user