diff options
author | 2019-10-13 16:44:11 -0400 | |
---|---|---|
committer | 2019-10-15 11:57:52 -0400 | |
commit | c2af3950bb2de8575febb1088966ca96cb597185 (patch) | |
tree | 2b9a671456610436c5cede5be5449da2330b889f /dev-python/pytest-pylint/pytest-pylint-0.14.1.ebuild | |
parent | dev-python/pytest-pylint: Python 3.7 compatibility (diff) | |
download | gentoo-c2af3950bb2de8575febb1088966ca96cb597185.tar.gz gentoo-c2af3950bb2de8575febb1088966ca96cb597185.tar.bz2 gentoo-c2af3950bb2de8575febb1088966ca96cb597185.zip |
dev-python/pytest-pylint: 0.14.1 version bump, EAPI=7, add RDEPEND
Closes: https://bugs.gentoo.org/662608
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Craig Andrews <candrews@gentoo.org>
Diffstat (limited to 'dev-python/pytest-pylint/pytest-pylint-0.14.1.ebuild')
-rw-r--r-- | dev-python/pytest-pylint/pytest-pylint-0.14.1.ebuild | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/dev-python/pytest-pylint/pytest-pylint-0.14.1.ebuild b/dev-python/pytest-pylint/pytest-pylint-0.14.1.ebuild new file mode 100644 index 000000000000..4e165ea01922 --- /dev/null +++ b/dev-python/pytest-pylint/pytest-pylint-0.14.1.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +PYTHON_COMPAT=( python2_7 python3_{5,6,7} ) +inherit distutils-r1 + +DESCRIPTION="pytest plugin to check source code with pylint" +HOMEPAGE="https://github.com/carsongee/pytest-pylint" +SRC_URI="https://github.com/carsongee/pytest-pylint/archive/${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" + +RDEPEND="dev-python/pytest[${PYTHON_USEDEP}] + dev-python/pylint[${PYTHON_USEDEP}] + dev-python/six[${PYTHON_USEDEP}]" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}] + test? ( + dev-python/pytest-pep8[${PYTHON_USEDEP}] + )" + +python_prepare_all() { + # pytest grabs the options from tox.ini automatically + # but setup.py does not declare pytest-pep8 as a dep, + # so it's missing from env created by distutils_install_for_testing + sed -i -e 's:--pep8::' tox.ini || die + distutils-r1_python_prepare_all +} + +python_test() { + distutils_install_for_testing + py.test -v || die "Tests fail with ${EPYTHON}" +} |