diff options
author | Michał Górny <mgorny@gentoo.org> | 2020-11-30 21:00:24 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2020-12-01 11:31:54 +0100 |
commit | 735795bc8860ec7e29c56990792464c74cc287dc (patch) | |
tree | e447a6362868c3e435d805ac658fcc2a2a7de047 /dev-python/cbor | |
parent | dev-python/PyUtilib: Pass --via-root to dift (diff) | |
download | gentoo-735795bc8860ec7e29c56990792464c74cc287dc.tar.gz gentoo-735795bc8860ec7e29c56990792464c74cc287dc.tar.bz2 gentoo-735795bc8860ec7e29c56990792464c74cc287dc.zip |
dev-python/cbor: Remove unnecessary dift
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/cbor')
-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}" } |