diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-07-27 11:41:03 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-07-27 11:44:15 +0200 |
commit | c64da07b2033a2a6f0732aa035ff903eaa20df34 (patch) | |
tree | 569062a0942e8061b2291d1cea6ba4b6f749f990 /dev-python/unittest-or-fail | |
parent | dev-python/validators: Remove old (diff) | |
download | gentoo-c64da07b2033a2a6f0732aa035ff903eaa20df34.tar.gz gentoo-c64da07b2033a2a6f0732aa035ff903eaa20df34.tar.bz2 gentoo-c64da07b2033a2a6f0732aa035ff903eaa20df34.zip |
dev-python/unittest-or-fail: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/unittest-or-fail')
-rw-r--r-- | dev-python/unittest-or-fail/unittest-or-fail-2.ebuild | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild b/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild deleted file mode 100644 index e71959e95147..000000000000 --- a/dev-python/unittest-or-fail/unittest-or-fail-2.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 2021-2023 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=flit -PYTHON_COMPAT=( python3_{10..12} pypy3 ) - -inherit distutils-r1 - -DESCRIPTION="Run unittests or fail if no tests were found" -HOMEPAGE="https://github.com/projg2/unittest-or-fail/" -SRC_URI=" - https://github.com/projg2/unittest-or-fail/archive/v${PV}.tar.gz - -> ${P}.tar.gz -" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris" - -# Warning: do not use distutils_enable_tests to avoid a circular -# dependency on itself! -python_test() { - # unittest fails in python3.12 by default, and it is more strict - # than the behavior expected from unittest-or-fail. We only add - # 3.12 compat to workaround a pkgcheck limitation, so no point - # in fixing the tests. - # https://github.com/pkgcore/pkgcheck/issues/584 - [[ ${EPYTHON} == python3.12 ]] && return - - "${EPYTHON}" -m unittest -v test/test_unittest_or_fail.py || - die "Tests failed with ${EPYTHON}" -} |