*/*: [QA] Remove redundant || die on virtx

* `virtx` never required `|| die` to begin with.

Closes: https://github.com/gentoo/gentoo/pull/13954
Signed-off-by: David Seifert <soap@gentoo.org>
This commit is contained in:
David Seifert
2019-12-12 13:55:31 +01:00
parent 944b0fadd8
commit 76c0a78131
81 changed files with 81 additions and 81 deletions

View File

@@ -34,5 +34,5 @@ RESTRICT="test"
python_test() {
local -x MPLBACKEND=Agg
virtx py.test -v || die "Tests failed with ${EPYTHON}"
virtx py.test -v
}