dev-python/qdarkstyle: add missing die call

Signed-off-by: Joonas Niilola <juippis@gentoo.org>
This commit is contained in:
Joonas Niilola
2020-03-27 18:24:46 +02:00
parent a6cbb36f25
commit 54ae399407

View File

@@ -42,7 +42,7 @@ python_prepare_all() {
python_test() {
# tests look for a file in source dir that is not installed
PYTHONPATH="${S}"
cd "${S}"
cd "${S}" || die
pytest -vv || die "Tests fail with ${EPYTHON}"
}