dev-python/sphinxcontrib-websupport: Make tests fatal

This commit is contained in:
Michał Górny
2018-01-01 10:43:40 +01:00
parent f1f167b033
commit fa1773b343

View File

@@ -38,6 +38,6 @@ python_install_all() {
find "${ED}" -name '*.pth' -delete || die
}
python_test(){
${EPYTHON} -m pytest tests/
python_test() {
"${EPYTHON}" -m pytest tests/ || die "Tests fail with ${EPYTHON}"
}