commit: 735795bc8860ec7e29c56990792464c74cc287dc
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Mon Nov 30 20:00:24 2020 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Tue Dec 1 10:31:54 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=735795bc
dev-python/cbor: Remove unnecessary dift
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/cbor/cbor-1.0.0-r1.ebuild | 13 ++++---------
1 file changed, 4 insertions(+), 9 deletions(-)
diff --git a/dev-python/cbor/cbor-1.0.0-r1.ebuild
b/dev-python/cbor/cbor-1.0.0-r1.ebuild
index 28ec5ba34fc..cb0dcf6748e 100644
--- a/dev-python/cbor/cbor-1.0.0-r1.ebuild
+++ b/dev-python/cbor/cbor-1.0.0-r1.ebuild
@@ -28,13 +28,8 @@ PATCHES=(
)
python_test() {
- distutils_install_for_testing
- PYTHONPATH="${BUILD_DIR}/lib" \
- "${PYTHON:-python}" cbor/tests/test_cbor.py || die
"Testsuite failed under ${EPYTHON}"
- PYTHONPATH="${BUILD_DIR}/lib" \
- "${PYTHON:-python}" cbor/tests/test_objects.py || die
"Testsuite failed under ${EPYTHON}"
- PYTHONPATH="${BUILD_DIR}/lib" \
- "${PYTHON:-python}" cbor/tests/test_usage.py || die
"Testsuite failed under ${EPYTHON}"
- PYTHONPATH="${BUILD_DIR}/lib" \
- "${PYTHON:-python}" cbor/tests/test_vectors.py || die
"Testsuite failed under ${EPYTHON}"
+ "${EPYTHON}" cbor/tests/test_cbor.py || die "Testsuite failed under
${EPYTHON}"
+ "${EPYTHON}" cbor/tests/test_objects.py || die "Testsuite failed under
${EPYTHON}"
+ "${EPYTHON}" cbor/tests/test_usage.py || die "Testsuite failed under
${EPYTHON}"
+ "${EPYTHON}" cbor/tests/test_vectors.py || die "Testsuite failed under
${EPYTHON}"
}