summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Mair-Keimberger <m.mairkeimberger@gmail.com>2020-03-30 18:18:48 +0200
committerAaron Bauman <bman@gentoo.org>2020-05-14 18:19:27 -0400
commit598e2f94abcdbdb2365eec0e182f56fa8bad17ae (patch)
treee5e3379b9c7853b598e01023fd8eeb96d84fb3a9 /dev-python/paramiko
parentdev-python/imapclient: remove unused patch (diff)
downloadgentoo-598e2f94abcdbdb2365eec0e182f56fa8bad17ae.tar.gz
gentoo-598e2f94abcdbdb2365eec0e182f56fa8bad17ae.tar.bz2
gentoo-598e2f94abcdbdb2365eec0e182f56fa8bad17ae.zip
dev-python/paramiko: 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/paramiko')
-rw-r--r--dev-python/paramiko/files/paramiko-2.6.0-tests.patch34
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/paramiko/files/paramiko-2.6.0-tests.patch b/dev-python/paramiko/files/paramiko-2.6.0-tests.patch
deleted file mode 100644
index 4b15f6a50502..000000000000
--- a/dev-python/paramiko/files/paramiko-2.6.0-tests.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-Skip tests requiring pytest-relaxed since it was removed from the tree due to
-breaking pytest.
-
---- paramiko-2.6.0/tests/test_client.py
-+++ paramiko-2.6.0/tests/test_client.py
-@@ -33,7 +33,7 @@
- import weakref
- from tempfile import mkstemp
-
--from pytest_relaxed import raises
-+#from pytest_relaxed import raises
- from mock import patch, Mock
-
- import paramiko
-@@ -684,7 +684,8 @@
-
- # TODO: more granular exception pending #387; should be signaling "no auth
- # methods available" because no key and no password
-- @raises(SSHException)
-+ #@raises(SSHException)
-+ @unittest.skip("skip tests requiring pytest-relaxed")
- def test_passphrase_kwarg_not_used_for_password_auth(self):
- # Using the "right" password in the "wrong" field shouldn't work.
- self._test_connection(passphrase="pygmalion")
-@@ -705,7 +706,8 @@
- password="television",
- )
-
-- @raises(AuthenticationException) # TODO: more granular
-+ #@raises(AuthenticationException) # TODO: more granular
-+ @unittest.skip("skip tests requiring pytest-relaxed")
- def test_password_kwarg_not_used_for_passphrase_when_passphrase_kwarg_given( # noqa
- self
- ):