diff options
author | Joonas Niilola <juippis@gentoo.org> | 2020-03-27 18:24:46 +0200 |
---|---|---|
committer | Joonas Niilola <juippis@gentoo.org> | 2020-03-27 18:25:02 +0200 |
commit | 54ae3994070ad600cfef39ff53262ec9c2191e03 (patch) | |
tree | cd452de99c5f3b54b491ceda0c0f4629807eb91e /dev-python/qdarkstyle | |
parent | dev-python/spyder: version bump 4.1.1 (diff) | |
download | gentoo-54ae3994070ad600cfef39ff53262ec9c2191e03.tar.gz gentoo-54ae3994070ad600cfef39ff53262ec9c2191e03.tar.bz2 gentoo-54ae3994070ad600cfef39ff53262ec9c2191e03.zip |
dev-python/qdarkstyle: add missing die call
Signed-off-by: Joonas Niilola <juippis@gentoo.org>
Diffstat (limited to 'dev-python/qdarkstyle')
-rw-r--r-- | dev-python/qdarkstyle/qdarkstyle-2.8.1.ebuild | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dev-python/qdarkstyle/qdarkstyle-2.8.1.ebuild b/dev-python/qdarkstyle/qdarkstyle-2.8.1.ebuild index 6e23dfa14a68..a84793dfaed5 100644 --- a/dev-python/qdarkstyle/qdarkstyle-2.8.1.ebuild +++ b/dev-python/qdarkstyle/qdarkstyle-2.8.1.ebuild @@ -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}" } |