dev-python/asynctest: bump python compat

Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan@riseup.net>
This commit is contained in:
Andrew Ammerlaan
2021-04-13 15:12:37 +02:00
parent bd130660e7
commit ce4ffddb46

View File

@@ -1,9 +1,9 @@
# Copyright 1999-2020 Gentoo Authors
# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI="7"
PYTHON_COMPAT=( python3_7 pypy3 )
PYTHON_COMPAT=( python3_{7,8,9} pypy3 )
inherit distutils-r1
@@ -17,11 +17,9 @@ SRC_URI="https://github.com/Martiusweb/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="test"
RESTRICT="!test? ( test )"
DEPEND=""
distutils_enable_sphinx doc
distutils_enable_tests unittest
src_prepare() {
sed -i 's|def test_events_watched_outside_test_are_ignored|@unittest.skip("this fail")\n def test_events_watched_outside_test_are_ignored|' test/test_selector.py
@@ -29,5 +27,5 @@ src_prepare() {
}
python_test() {
"${EPYTHON}" -m unittest -v test || die "Testing failed"
"${EPYTHON}" -m unittest -v test || die "Testing failed with ${EPYTHON}"
}