diff options
author | Michał Górny <mgorny@gentoo.org> | 2018-01-01 10:43:40 +0100 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2018-01-01 11:08:41 +0100 |
commit | fa1773b3438092fc249607a599b2ef9f10ed9be2 (patch) | |
tree | 05a1223f664599331d2db1efa535e6c4462a46a1 /dev-python/sphinxcontrib-websupport | |
parent | dev-python/sphinxcontrib-websupport: Make sphinx PDEP, fix other deps (diff) | |
download | gentoo-fa1773b3438092fc249607a599b2ef9f10ed9be2.tar.gz gentoo-fa1773b3438092fc249607a599b2ef9f10ed9be2.tar.bz2 gentoo-fa1773b3438092fc249607a599b2ef9f10ed9be2.zip |
dev-python/sphinxcontrib-websupport: Make tests fatal
Diffstat (limited to 'dev-python/sphinxcontrib-websupport')
-rw-r--r-- | dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild index 77893f377774..acee6d134de7 100644 --- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild +++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.0.1-r1.ebuild @@ -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}" } |