Skip to content

Commit

Permalink
dev-python/pytest: Make tests verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
mgorny committed Jul 11, 2018
1 parent 58a83ee commit 65d73a3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dev-python/pytest/pytest-3.4.2.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -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
}

Expand Down

0 comments on commit 65d73a3

Please sign in to comment.