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/pytest-httpserver/
Date: Thu, 22 Sep 2022 18:23:40
Message-Id: 1663871011.a9798c1d94f7829c904a7c378aa1cdfae423798b.mgorny@gentoo
1 commit: a9798c1d94f7829c904a7c378aa1cdfae423798b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Sep 22 16:07:01 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Sep 22 18:23:31 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9798c1d
7
8 dev-python/pytest-httpserver: Skip test_release
9
10 Closes: https://bugs.gentoo.org/872386
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 dev-python/pytest-httpserver/pytest-httpserver-1.0.6.ebuild | 5 +++++
14 1 file changed, 5 insertions(+)
15
16 diff --git a/dev-python/pytest-httpserver/pytest-httpserver-1.0.6.ebuild b/dev-python/pytest-httpserver/pytest-httpserver-1.0.6.ebuild
17 index 326f3d0b4625..06a43e694073 100644
18 --- a/dev-python/pytest-httpserver/pytest-httpserver-1.0.6.ebuild
19 +++ b/dev-python/pytest-httpserver/pytest-httpserver-1.0.6.ebuild
20 @@ -34,5 +34,10 @@ BDEPEND="
21 distutils_enable_tests pytest
22
23 python_test() {
24 + local EPYTEST_IGNORE=(
25 + # tests from building release artifacts
26 + tests/test_release.py
27 + )
28 +
29 epytest -p no:localserver
30 }