commit: be38853b08bafa5fe67e284f4f17e33503d5a7b0 Author: Michał Górny <mgorny <AT> gentoo <DOT> org> AuthorDate: Thu Apr 23 11:53:17 2020 +0000 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org> CommitDate: Thu Apr 23 12:12:44 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be38853b
dev-python/cmd2: Disable test relying on 'vi' Bug: https://bugs.gentoo.org/710174 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org> dev-python/cmd2/cmd2-0.10.1.ebuild | 5 +++++ dev-python/cmd2/cmd2-1.0.2.ebuild | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/dev-python/cmd2/cmd2-0.10.1.ebuild b/dev-python/cmd2/cmd2-0.10.1.ebuild index 4da2056c28b..c6dd48a3be4 100644 --- a/dev-python/cmd2/cmd2-0.10.1.ebuild +++ b/dev-python/cmd2/cmd2-0.10.1.ebuild @@ -28,6 +28,11 @@ BDEPEND=" distutils_enable_tests pytest +src_prepare() { + sed -i -e 's:test_which_editor_good:_&:' tests/test_cmd2.py || die + distutils-r1_src_prepare +} + src_test() { # tests rely on very specific text wrapping... local -x COLUMNS=80 diff --git a/dev-python/cmd2/cmd2-1.0.2.ebuild b/dev-python/cmd2/cmd2-1.0.2.ebuild index 20add50e79b..67caee784fa 100644 --- a/dev-python/cmd2/cmd2-1.0.2.ebuild +++ b/dev-python/cmd2/cmd2-1.0.2.ebuild @@ -28,6 +28,11 @@ BDEPEND=" distutils_enable_tests pytest +src_prepare() { + sed -i -e 's:test_which_editor_good:_&:' tests/test_cmd2.py || die + distutils-r1_src_prepare +} + src_test() { # tests rely on very specific text wrapping... local -x COLUMNS=80
