From: Virgil Dupras Date: Sat, 25 Aug 2018 17:40:21 +0000 (-0400) Subject: dev-python/pytest-xprocess: fix broken tests X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a6303c9426a1ea3745b0e059b5d1f0a0703899ce;p=gentoo.git dev-python/pytest-xprocess: fix broken tests Closes: https://bugs.gentoo.org/664542 Package-Manager: Portage-2.3.47, Repoman-2.3.10 --- diff --git a/dev-python/pytest-xprocess/pytest-xprocess-0.12.1-r1.ebuild b/dev-python/pytest-xprocess/pytest-xprocess-0.12.1-r1.ebuild index 8677f37ccd25..b749a2cba7df 100644 --- a/dev-python/pytest-xprocess/pytest-xprocess-0.12.1-r1.ebuild +++ b/dev-python/pytest-xprocess/pytest-xprocess-0.12.1-r1.ebuild @@ -24,9 +24,8 @@ RDEPEND=" DEPEND="${RDEPEND}" python_test() { - cd example || die # Upstream's package mistakenly includes __pycache__ directory that make # tests fail. - rm -rf __pycache__ || die + rm -rf example/__pycache__ || die pytest -v || die }