dev-python/pytest: Kill obsolete pypy3 workaround

This commit is contained in:
Michał Górny
2018-07-11 19:43:21 +02:00
parent c83aa6801c
commit 7b2ed36e6a

View File

@@ -73,14 +73,8 @@ python_prepare_all() {
}
python_test() {
# test_nose.py not written to suit py3.2 in pypy3
if [[ "${EPYTHON}" == pypy3 ]]; then
"${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv \
--ignore=testing/BUILD_nose.py \
|| die "tests failed with ${EPYTHON}"
else
"${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv testing || die "tests failed with ${EPYTHON}"
fi
"${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX \
-vv testing || die "tests failed with ${EPYTHON}"
}
python_compile_all(){