diff options
author | Michael Mair-Keimberger <m.mairkeimberger@gmail.com> | 2020-03-30 18:21:54 +0200 |
---|---|---|
committer | Aaron Bauman <bman@gentoo.org> | 2020-05-14 18:19:28 -0400 |
commit | 2796f8a5c50a2cd83794fc92991457934df78ec9 (patch) | |
tree | 8a9f08ab53f9f8989fbdbcaef9f994f80cbd5c09 /dev-python/pluggy | |
parent | dev-python/pip: remove unused patch (diff) | |
download | gentoo-2796f8a5c50a2cd83794fc92991457934df78ec9.tar.gz gentoo-2796f8a5c50a2cd83794fc92991457934df78ec9.tar.bz2 gentoo-2796f8a5c50a2cd83794fc92991457934df78ec9.zip |
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>
Diffstat (limited to 'dev-python/pluggy')
-rw-r--r-- | dev-python/pluggy/files/pluggy-0.7.1-disable-broken-tests.patch | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/dev-python/pluggy/files/pluggy-0.7.1-disable-broken-tests.patch b/dev-python/pluggy/files/pluggy-0.7.1-disable-broken-tests.patch deleted file mode 100644 index 578b56ce3467..000000000000 --- a/dev-python/pluggy/files/pluggy-0.7.1-disable-broken-tests.patch +++ /dev/null @@ -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 |