From 82fd7a9f205be6c78fb3cd4200976b7cc7ad107a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 28 Apr 2017 21:39:43 +0200 Subject: [PATCH] dev-python/pbkdf2: Enable tests --- dev-python/pbkdf2/pbkdf2-1.3.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-python/pbkdf2/pbkdf2-1.3.ebuild b/dev-python/pbkdf2/pbkdf2-1.3.ebuild index 90cf763483da1..52221597207ff 100644 --- a/dev-python/pbkdf2/pbkdf2-1.3.ebuild +++ b/dev-python/pbkdf2/pbkdf2-1.3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 EAPI=5 @@ -15,3 +15,7 @@ LICENSE="MIT" SLOT="0" KEYWORDS="amd64 x86" IUSE="" + +python_test() { + "${PYTHON}" test/test_pbkdf2.py || die "Tests failed with ${EPYTHON}" +}