diff options
Diffstat (limited to 'dev-python/cbor/cbor-1.0.0-r1.ebuild')
-rw-r--r-- | dev-python/cbor/cbor-1.0.0-r1.ebuild | 13 |
1 files 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 28ec5ba34fcd..cb0dcf6748e0 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}" } |