commit: da0dcf14c8cd9e3fc553c790b936cb7f1b5ec854 Author: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> AuthorDate: Thu Sep 23 17:18:27 2021 +0000 Commit: Arthur Zamarin <arthurzam <AT> gentoo <DOT> org> CommitDate: Thu Sep 23 17:21:57 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da0dcf14
dev-python/pytest-check: new NIH test dep for dev-python/sphobjinv Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org> dev-python/pytest-check/Manifest | 1 + dev-python/pytest-check/metadata.xml | 13 ++++++++++ dev-python/pytest-check/pytest-check-1.0.4.ebuild | 29 +++++++++++++++++++++++ 3 files changed, 43 insertions(+) diff --git a/dev-python/pytest-check/Manifest b/dev-python/pytest-check/Manifest new file mode 100644 index 00000000000..7cb85a73456 --- /dev/null +++ b/dev-python/pytest-check/Manifest @@ -0,0 +1 @@ +DIST pytest-check-1.0.4.gh.tar.gz 7738 BLAKE2B 179575dfd4f9e50715fd5a664039fe882b0e14c9369afb6f7aca65e9ab276147b2a0b7fe580d2a249721152d891c12cedfa06ae7e26027c6b7d3b34da17d4a53 SHA512 ca71295fc5a831df295c8ce40c6a57cde9a1b98ca25354a3954fc44c9094096ea0c9c6a49139659d4c9aa4e3d3d81d80893edb657bfd3f4d988c75864e843447 diff --git a/dev-python/pytest-check/metadata.xml b/dev-python/pytest-check/metadata.xml new file mode 100644 index 00000000000..af6127a0bf2 --- /dev/null +++ b/dev-python/pytest-check/metadata.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Arthur Zamarin</name> + </maintainer> + <stabilize-allarches/> + <upstream> + <remote-id type="github">okken/pytest-check</remote-id> + <remote-id type="pypi">pytest_check</remote-id> + </upstream> +</pkgmetadata> diff --git a/dev-python/pytest-check/pytest-check-1.0.4.ebuild b/dev-python/pytest-check/pytest-check-1.0.4.ebuild new file mode 100644 index 00000000000..08ebac53b79 --- /dev/null +++ b/dev-python/pytest-check/pytest-check-1.0.4.ebuild @@ -0,0 +1,29 @@ +# Copyright 2021 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +PYTHON_COMPAT=( python3_{8..10} ) +DISTUTILS_USE_SETUPTOOLS=pyproject.toml +inherit distutils-r1 + +DESCRIPTION="pytest plugin that allows multiple failures per test" +HOMEPAGE="https://github.com/okken/pytest-check https://pypi.org/project/pytest_check/" +SRC_URI=" + https://github.com/okken/pytest-check/archive/${PV}.tar.gz + -> ${P}.gh.tar.gz +" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" + +RDEPEND=">=dev-python/pytest-6[${PYTHON_USEDEP}]" +BDEPEND="dev-python/flit_core[${PYTHON_USEDEP}]" + +distutils_enable_tests --install pytest + +src_prepare() { + default + mv src/pytest_check pytest_check +}
