diff options
author | 2023-05-26 19:32:26 +0200 | |
---|---|---|
committer | 2023-05-26 19:32:26 +0200 | |
commit | 48ae3a98caf3da9c873aa471dedd1d3b43333a29 (patch) | |
tree | 43c6a28e221095dff317874f5bf23718c2a40a8c /dev-python/paramiko | |
parent | dev-python/fitsio: Bump to 1.1.9 (diff) | |
download | gentoo-48ae3a98caf3da9c873aa471dedd1d3b43333a29.tar.gz gentoo-48ae3a98caf3da9c873aa471dedd1d3b43333a29.tar.bz2 gentoo-48ae3a98caf3da9c873aa471dedd1d3b43333a29.zip |
dev-python/paramiko: Skip broken tests and restore keywords
Skip the gssapi tests, as upstream indicated they don't really maintain
the code and they don't test it.
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/paramiko')
-rw-r--r-- | dev-python/paramiko/paramiko-3.2.0.ebuild | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/dev-python/paramiko/paramiko-3.2.0.ebuild b/dev-python/paramiko/paramiko-3.2.0.ebuild index 74945454d841..9060889d8250 100644 --- a/dev-python/paramiko/paramiko-3.2.0.ebuild +++ b/dev-python/paramiko/paramiko-3.2.0.ebuild @@ -22,9 +22,7 @@ SRC_URI=" LICENSE="LGPL-2.1" SLOT="0" -# the release is broken -# https://github.com/paramiko/paramiko/issues/2245 -KEYWORDS="" +KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos" IUSE="examples server" RDEPEND=" @@ -36,6 +34,12 @@ RDEPEND=" distutils_enable_tests pytest +EPYTEST_DESELECT=( + # upstream doesn't really maintain the gssapi support + tests/test_kex_gss.py + tests/test_ssh_gss.py +) + src_prepare() { local PATCHES=( "${FILESDIR}/${PN}-3.2.0-nih-test-deps.patch" |