dev-python/pytest: Kill obsolete pypy3 workaround
authorMichał Górny <mgorny@gentoo.org>
Wed, 11 Jul 2018 17:43:21 +0000 (19:43 +0200)
committerMichał Górny <mgorny@gentoo.org>
Wed, 11 Jul 2018 22:11:20 +0000 (00:11 +0200)
dev-python/pytest/pytest-3.4.2.ebuild

index ed3fc47c722fe6ee836640afa8e58e102b901fe1..122e1393e02aa42f77eb7ca95b766e008de03e8c 100644 (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(){