commit: 577fb95b3e0ee8a6c124b940494e46e50f05787e
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 27 06:58:36 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Mon Apr 27 07:18:35 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577fb95b
dev-python/brotlipy: Modernize
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild | 11 ++---------
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild
b/dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild
index 7cd6af26849..3f600dc16b6 100644
--- a/dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild
+++ b/dev-python/brotlipy/brotlipy-0.7.0-r1.ebuild
@@ -20,21 +20,18 @@ SRC_URI="
LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
# module name collision with app-arch/brotli
RDEPEND="virtual/python-cffi[${PYTHON_USEDEP}]
!app-arch/brotli[python]"
DEPEND="
- ${RDEPEND}
- dev-python/setuptools[${PYTHON_USEDEP}]
test? (
dev-python/hypothesis[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
)
"
+distutils_enable_tests pytest
+
PATCHES=(
"${FILESDIR}"/brotlipy-0.7.0-test-deadline.patch
)
@@ -49,7 +46,3 @@ src_prepare() {
distutils-r1_src_prepare
}
-
-python_test() {
- pytest -vv || die "Testing failed"
-}