From 402c1607ca916a7b7ca5a00ce775f3304d344034 Mon Sep 17 00:00:00 2001 From: Michał Górny Date: Sun, 23 May 2021 15:10:36 +0200 Subject: dev-python/snapshottest: Enable py3.9 & py3.10 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/snapshottest/snapshottest-0.5.1.ebuild | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/dev-python/snapshottest/snapshottest-0.5.1.ebuild b/dev-python/snapshottest/snapshottest-0.5.1.ebuild index aec16c0b697d..c49cc1e8330a 100644 --- a/dev-python/snapshottest/snapshottest-0.5.1.ebuild +++ b/dev-python/snapshottest/snapshottest-0.5.1.ebuild @@ -1,10 +1,9 @@ -# Copyright 2020 Gentoo Authors +# Copyright 2020-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -PYTHON_COMPAT=( python3_{7..8} ) -DISTUTILS_USE_SETUPTOOLS=bdepend +PYTHON_COMPAT=( python3_{7..10} ) inherit distutils-r1 # no tests on pypi, no tags on github @@ -13,24 +12,21 @@ COMMIT_HASH="4ac2b4fb09e9e7728bebb11967c164a914775d1d" DESCRIPTION="Snapshot Testing utils for Python" HOMEPAGE="https://pypi.org/project/snapshottest/ https://github.com/syrusakbary/snapshottest" -SRC_URI="https://github.com/syrusakbary/${PN}/archive/${COMMIT_HASH}.tar.gz -> ${P}.tar.gz" +SRC_URI=" + https://github.com/syrusakbary/${PN}/archive/${COMMIT_HASH}.tar.gz + -> ${P}.tar.gz" S="${WORKDIR}/${PN}-${COMMIT_HASH}" LICENSE="MIT" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="test" -RESTRICT="!test? ( test )" RDEPEND=" dev-python/six[${PYTHON_USEDEP}] dev-python/termcolor[${PYTHON_USEDEP}] " -BDEPEND="${RDEPEND} - test? ( - dev-python/pytest[${PYTHON_USEDEP}] - ) -" + +distutils_enable_tests pytest PATCHES=( "${FILESDIR}/snapshottest-0.5.1-remove-fastdiff.patch" @@ -44,6 +40,6 @@ python_prepare_all() { python_test() { distutils_install_for_testing - pytest -vv tests examples/pytest || die "Tests failed with ${EPYTHON}" + epytest tests examples/pytest "${EPYTHON}" examples/unittest/test_demo.py || die "Tests failed with ${EPYTHON}" } -- cgit v1.2.3-65-gdbad