dev-python/bitarray: Tested on py3.7

Closes: https://bugs.gentoo.org/688536
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2019-06-24 11:44:23 +02:00
parent 33f2a548c5
commit c3c6294599

View File

@@ -3,7 +3,7 @@
EAPI=6
PYTHON_COMPAT=( python{2_7,3_5,3_6} )
PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
inherit distutils-r1
@@ -16,5 +16,5 @@ LICENSE="PSF-2"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~amd64-fbsd"
python_test() {
"${PYTHON}" ${PN}/test_${PN}.py || die "Tests fail with ${EPYTHON}"
"${EPYTHON}" bitarray/test_bitarray.py -v || die "Tests fail with ${EPYTHON}"
}