From cdba8f00dae74bb2667a46cd587da973d7bbb802 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Fri, 16 Jul 2021 13:07:47 +0200 Subject: [PATCH] dev-python/python-podman: Ignore integration tests entirely MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Ignore integration tests entirely rather than deselecting them, in order to avoid additional test dependencies. Closes: https://bugs.gentoo.org/802447 Signed-off-by: Michał Górny --- dev-python/python-podman/python-podman-3.2.0.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/dev-python/python-podman/python-podman-3.2.0.ebuild b/dev-python/python-podman/python-podman-3.2.0.ebuild index 716d1e8876bd9..58c9d7fd927b9 100644 --- a/dev-python/python-podman/python-podman-3.2.0.ebuild +++ b/dev-python/python-podman/python-podman-3.2.0.ebuild @@ -34,13 +34,11 @@ distutils_enable_tests pytest python_test() { local deselect=( - # integration tests require a workable podman server, - # and it doesn't seem to work in ebuild env - podman/tests/integration - # TODO podman/tests/unit/test_volumesmanager.py::VolumesManagerTestCase::test_get_404 ) - epytest ${deselect[@]/#/--deselect } + # integration tests require a workable podman server, + # and it doesn't seem to work in ebuild env + epytest podman/tests/unit ${deselect[@]/#/--deselect } }