summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-02-16 17:58:55 +0100
committerMichał Górny <mgorny@gentoo.org>2024-02-16 18:15:51 +0100
commit81696b1e24dad6dc617f6a87c7bc0e5c8ed28d46 (patch)
tree22f9e1a4bb5fffa586cf90158d223a564cf96f1d /dev-python/github3-py
parentdev-python/oslo-utils: Restrict to <dev-python/netaddr-1 (diff)
downloadgentoo-81696b1e24dad6dc617f6a87c7bc0e5c8ed28d46.tar.gz
gentoo-81696b1e24dad6dc617f6a87c7bc0e5c8ed28d46.tar.bz2
gentoo-81696b1e24dad6dc617f6a87c7bc0e5c8ed28d46.zip
dev-python/github3-py: Deselect failing tests (upstream did too)
Closes: https://bugs.gentoo.org/924335 Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/github3-py')
-rw-r--r--dev-python/github3-py/github3-py-4.0.1.ebuild10
1 files changed, 9 insertions, 1 deletions
diff --git a/dev-python/github3-py/github3-py-4.0.1.ebuild b/dev-python/github3-py/github3-py-4.0.1.ebuild
index beebe6da4fb9..a6a2528937e3 100644
--- a/dev-python/github3-py/github3-py-4.0.1.ebuild
+++ b/dev-python/github3-py/github3-py-4.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@@ -41,5 +41,13 @@ BDEPEND="
distutils_enable_tests pytest
python_test() {
+ local EPYTEST_DESELECT=(
+ # betamax / urllib3 problem
+ # upstream marked these tests xfail...
+ # https://github.com/sigmavirus24/github3.py/commit/9d6124c09b0997b5e83579549bcf22b3e901d7e5
+ tests/integration/test_repos_repo.py::TestRepoCommit::test_{diff,patch}
+ tests/integration/test_repos_repo.py::TestComparison::test_{diff,patch}
+ )
+
epytest -o addopts=
}