diff options
author | Zero_Chaos <zerochaos@gentoo.org> | 2016-10-12 15:45:40 -0400 |
---|---|---|
committer | Zero_Chaos <zerochaos@gentoo.org> | 2016-10-12 15:45:56 -0400 |
commit | 109515b16d90259f7d46969912828c1b4edf03ac (patch) | |
tree | 80e2d013f41530e9fef9849dd536b526a9160d20 /dev-util | |
parent | dev-vcs/git-flow: Remove 1.10.0 (diff) | |
download | gentoo-109515b16d90259f7d46969912828c1b4edf03ac.tar.gz gentoo-109515b16d90259f7d46969912828c1b4edf03ac.tar.bz2 gentoo-109515b16d90259f7d46969912828c1b4edf03ac.zip |
dev-util/lorax: add a stub for the non-working tests
Package-Manager: portage-2.3.1
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/lorax/lorax-26.0.ebuild | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/dev-util/lorax/lorax-26.0.ebuild b/dev-util/lorax/lorax-26.0.ebuild index bbda8216e177..0671c1a90a02 100644 --- a/dev-util/lorax/lorax-26.0.ebuild +++ b/dev-util/lorax/lorax-26.0.ebuild @@ -14,8 +14,16 @@ SRC_URI="https://github.com/rhinstaller/lorax/archive/${P}-1.tar.gz -> ${P}-1.ta LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~x86" +IUSE=test + +#ImportError: No module named 'pocketlint' +RESTRICT=test S="${WORKDIR}"/"${PN}-${P}-1" -DEPEND="" -RDEPEND="${DEPEND}" +DEPEND="test? ( dev-python/pylint )" +RDEPEND="" + +src_test() { + emake check +} |