Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-podman/
Date: Fri, 16 Jul 2021 11:09:02
Message-Id: 1626433732.cdba8f00dae74bb2667a46cd587da973d7bbb802.mgorny@gentoo
1 commit: cdba8f00dae74bb2667a46cd587da973d7bbb802
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jul 16 11:07:47 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Fri Jul 16 11:08:52 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdba8f00
7
8 dev-python/python-podman: Ignore integration tests entirely
9
10 Ignore integration tests entirely rather than deselecting them,
11 in order to avoid additional test dependencies.
12
13 Closes: https://bugs.gentoo.org/802447
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 dev-python/python-podman/python-podman-3.2.0.ebuild | 8 +++-----
17 1 file changed, 3 insertions(+), 5 deletions(-)
18
19 diff --git a/dev-python/python-podman/python-podman-3.2.0.ebuild b/dev-python/python-podman/python-podman-3.2.0.ebuild
20 index 716d1e8876b..58c9d7fd927 100644
21 --- a/dev-python/python-podman/python-podman-3.2.0.ebuild
22 +++ b/dev-python/python-podman/python-podman-3.2.0.ebuild
23 @@ -34,13 +34,11 @@ distutils_enable_tests pytest
24
25 python_test() {
26 local deselect=(
27 - # integration tests require a workable podman server,
28 - # and it doesn't seem to work in ebuild env
29 - podman/tests/integration
30 -
31 # TODO
32 podman/tests/unit/test_volumesmanager.py::VolumesManagerTestCase::test_get_404
33 )
34
35 - epytest ${deselect[@]/#/--deselect }
36 + # integration tests require a workable podman server,
37 + # and it doesn't seem to work in ebuild env
38 + epytest podman/tests/unit ${deselect[@]/#/--deselect }
39 }