Gentoo Archives: gentoo-commits

From: Sergei Trofimovich <slyfox@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/diffoscope/
Date: Sat, 12 Jun 2021 15:10:32
Message-Id: 1623510623.12180e0d3e9d3ffca7d1afb48384455e9b63fe1c.slyfox@gentoo
1 commit: 12180e0d3e9d3ffca7d1afb48384455e9b63fe1c
2 Author: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jun 12 15:10:20 2021 +0000
4 Commit: Sergei Trofimovich <slyfox <AT> gentoo <DOT> org>
5 CommitDate: Sat Jun 12 15:10:23 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12180e0d
7
8 dev-util/diffoscope: disable broken tests
9
10 Package-Manager: Portage-3.0.19, Repoman-3.0.3
11 Signed-off-by: Sergei Trofimovich <slyfox <AT> gentoo.org>
12
13 dev-util/diffoscope/diffoscope-177.ebuild | 14 ++++++++++++++
14 1 file changed, 14 insertions(+)
15
16 diff --git a/dev-util/diffoscope/diffoscope-177.ebuild b/dev-util/diffoscope/diffoscope-177.ebuild
17 index 2fd7602fa6d..9ae8834c67c 100644
18 --- a/dev-util/diffoscope/diffoscope-177.ebuild
19 +++ b/dev-util/diffoscope/diffoscope-177.ebuild
20 @@ -73,3 +73,17 @@ RDEPEND="dev-python/python-magic[${PYTHON_USEDEP}]
21 RDEPEND+=" !dev-python/filemagic"
22
23 distutils_enable_tests pytest
24 +
25 +python_test() {
26 + local exclude=(
27 + # test seems to use different tarball
28 + tests/test_presenters.py::test_text_proper_indentation
29 +
30 + # needs triage
31 + tests/comparators/test_binary.py::test_with_compare_details_and_tool_not_found
32 +
33 + # needs triage
34 + tests/comparators/test_rlib.py::test_item3_deflate_llvm_bitcode
35 + )
36 + epytest ${exclude[@]/#/--deselect }
37 +}