dev-python/python-podman: Ignore integration tests entirely

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 <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2021-07-16 13:07:47 +02:00
parent 6245b3561c
commit cdba8f00da

View File

@@ -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 }
}