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-flake8/
Date: Mon, 24 Jan 2022 22:14:16
Message-Id: 1643062180.4b2249c3fddc596c6cc9f1d1306f7168a64d1c67.mgorny@gentoo
1 commit: 4b2249c3fddc596c6cc9f1d1306f7168a64d1c67
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jan 23 15:21:46 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Jan 24 22:09:40 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2249c3
7
8 dev-python/pytest-flake8: Enable pytest-flake8 plugin explicitly
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/pytest-flake8/pytest-flake8-1.0.7.ebuild | 6 +++++-
13 1 file changed, 5 insertions(+), 1 deletion(-)
14
15 diff --git a/dev-python/pytest-flake8/pytest-flake8-1.0.7.ebuild b/dev-python/pytest-flake8/pytest-flake8-1.0.7.ebuild
16 index 6398ac03bfb8..907b852ec5cb 100644
17 --- a/dev-python/pytest-flake8/pytest-flake8-1.0.7.ebuild
18 +++ b/dev-python/pytest-flake8/pytest-flake8-1.0.7.ebuild
19 @@ -1,4 +1,4 @@
20 -# Copyright 1999-2021 Gentoo Authors
21 +# Copyright 1999-2022 Gentoo Authors
22 # Distributed under the terms of the GNU General Public License v2
23
24 EAPI=7
25 @@ -17,3 +17,7 @@ KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 x86"
26 RDEPEND=">=dev-python/flake8-3.5.0[${PYTHON_USEDEP}]"
27
28 distutils_enable_tests pytest
29 +
30 +python_test() {
31 + epytest -p flake8
32 +}