Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/paramiko/files/
Date: Thu, 14 May 2020 22:19:49
Message-Id: 1589494767.598e2f94abcdbdb2365eec0e182f56fa8bad17ae.bman@gentoo
1 commit: 598e2f94abcdbdb2365eec0e182f56fa8bad17ae
2 Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Mon Mar 30 16:18:48 2020 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Thu May 14 22:19:27 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=598e2f94
7
8 dev-python/paramiko: remove unused patch
9
10 Package-Manager: Portage-2.3.96, Repoman-2.3.22
11 Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
12 Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
13
14 .../paramiko/files/paramiko-2.6.0-tests.patch | 34 ----------------------
15 1 file changed, 34 deletions(-)
16
17 diff --git a/dev-python/paramiko/files/paramiko-2.6.0-tests.patch b/dev-python/paramiko/files/paramiko-2.6.0-tests.patch
18 deleted file mode 100644
19 index 4b15f6a5050..00000000000
20 --- a/dev-python/paramiko/files/paramiko-2.6.0-tests.patch
21 +++ /dev/null
22 @@ -1,34 +0,0 @@
23 -Skip tests requiring pytest-relaxed since it was removed from the tree due to
24 -breaking pytest.
25 -
26 ---- paramiko-2.6.0/tests/test_client.py
27 -+++ paramiko-2.6.0/tests/test_client.py
28 -@@ -33,7 +33,7 @@
29 - import weakref
30 - from tempfile import mkstemp
31 -
32 --from pytest_relaxed import raises
33 -+#from pytest_relaxed import raises
34 - from mock import patch, Mock
35 -
36 - import paramiko
37 -@@ -684,7 +684,8 @@
38 -
39 - # TODO: more granular exception pending #387; should be signaling "no auth
40 - # methods available" because no key and no password
41 -- @raises(SSHException)
42 -+ #@raises(SSHException)
43 -+ @unittest.skip("skip tests requiring pytest-relaxed")
44 - def test_passphrase_kwarg_not_used_for_password_auth(self):
45 - # Using the "right" password in the "wrong" field shouldn't work.
46 - self._test_connection(passphrase="pygmalion")
47 -@@ -705,7 +706,8 @@
48 - password="television",
49 - )
50 -
51 -- @raises(AuthenticationException) # TODO: more granular
52 -+ #@raises(AuthenticationException) # TODO: more granular
53 -+ @unittest.skip("skip tests requiring pytest-relaxed")
54 - def test_password_kwarg_not_used_for_passphrase_when_passphrase_kwarg_given( # noqa
55 - self
56 - ):