dev-python/pytest: Make tests verbose
authorMichał Górny <mgorny@gentoo.org>
Wed, 11 Jul 2018 17:33:35 +0000 (19:33 +0200)
committerMichał Górny <mgorny@gentoo.org>
Wed, 11 Jul 2018 22:11:19 +0000 (00:11 +0200)
dev-python/pytest/pytest-3.4.2.ebuild

index 335e6ee564725c730f481cd17c9615526b697590..c543591cc90deb3f549887c5206fb876d04e780f 100644 (file)
@@ -66,11 +66,11 @@ 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 \
+               "${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 testing || die "tests failed with ${EPYTHON}"
+               "${PYTHON}" "${BUILD_DIR}"/lib/pytest.py --lsof -rfsxX -vv testing || die "tests failed with ${EPYTHON}"
        fi
 }