summaryrefslogtreecommitdiff
path: root/dev-python/pytest-bdd
diff options
context:
space:
mode:
Diffstat (limited to 'dev-python/pytest-bdd')
-rw-r--r--dev-python/pytest-bdd/Manifest1
-rw-r--r--dev-python/pytest-bdd/files/pytest-bdd-8.1.0-gherkin-bounds.patch12
-rw-r--r--dev-python/pytest-bdd/metadata.xml13
-rw-r--r--dev-python/pytest-bdd/pytest-bdd-8.1.0-r1.ebuild50
4 files changed, 0 insertions, 76 deletions
diff --git a/dev-python/pytest-bdd/Manifest b/dev-python/pytest-bdd/Manifest
deleted file mode 100644
index ed6d832096fb..000000000000
--- a/dev-python/pytest-bdd/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pytest-bdd-8.1.0.gh.tar.gz 116529 BLAKE2B b282f42dbde9394f37e41682d44352d5895a30e2b88c20c46f8d9344f8069e25e2a7a2b6225ebd34a43b60d2392c7bc515f2ebd94bb26a0d350b7d188dd4d77e SHA512 6b03a509a8026ac242a4446caffc019b264f3528322eab8aa0ca2ce4c099bbc45640d63087a756d0d1d0daacdd2f396f121823ca500cef38391e9313a0f898ab
diff --git a/dev-python/pytest-bdd/files/pytest-bdd-8.1.0-gherkin-bounds.patch b/dev-python/pytest-bdd/files/pytest-bdd-8.1.0-gherkin-bounds.patch
deleted file mode 100644
index 0a1087211c96..000000000000
--- a/dev-python/pytest-bdd/files/pytest-bdd-8.1.0-gherkin-bounds.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-Unknown how long until next release, and meanwhile `pip check`
-reporting errors has a tendency to break random things.
-
-Backport from:
-https://github.com/pytest-dev/pytest-bdd/commit/8ce79eafa6ac4
---- a/pyproject.toml
-+++ b/pyproject.toml
-@@ -43,3 +43,3 @@
- packaging = "*"
--gherkin-official = "^29.0.0"
-+gherkin-official = ">=29.0.0"
-
diff --git a/dev-python/pytest-bdd/metadata.xml b/dev-python/pytest-bdd/metadata.xml
deleted file mode 100644
index e5bcfe846403..000000000000
--- a/dev-python/pytest-bdd/metadata.xml
+++ /dev/null
@@ -1,13 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>ionen@gentoo.org</email>
- <name>Ionen Wolkens</name>
- </maintainer>
- <stabilize-allarches/>
- <upstream>
- <remote-id type="github">pytest-dev/pytest-bdd</remote-id>
- <remote-id type="pypi">pytest-bdd</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/dev-python/pytest-bdd/pytest-bdd-8.1.0-r1.ebuild b/dev-python/pytest-bdd/pytest-bdd-8.1.0-r1.ebuild
deleted file mode 100644
index 8bc9fb0f5127..000000000000
--- a/dev-python/pytest-bdd/pytest-bdd-8.1.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2021-2025 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=poetry
-PYTHON_COMPAT=( python3_{13..14} )
-inherit distutils-r1
-
-DESCRIPTION="BDD library for the pytest runner"
-HOMEPAGE="https://pytest-bdd.readthedocs.io/"
-SRC_URI="
- https://github.com/pytest-dev/pytest-bdd/archive/refs/tags/${PV}.tar.gz
- -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 arm64"
-
-RDEPEND="
- dev-python/gherkin-official[${PYTHON_USEDEP}]
- dev-python/mako[${PYTHON_USEDEP}]
- dev-python/packaging[${PYTHON_USEDEP}]
- dev-python/parse-type[${PYTHON_USEDEP}]
- dev-python/parse[${PYTHON_USEDEP}]
- dev-python/pytest[${PYTHON_USEDEP}]
- dev-python/typing-extensions[${PYTHON_USEDEP}]
-"
-
-EPYTEST_PLUGINS=( ${PN} )
-EPYTEST_PLUGIN_LOAD_VIA_ENV=1
-distutils_enable_tests pytest
-
-DOCS=( AUTHORS.rst CHANGES.rst README.rst )
-
-PATCHES=(
- "${FILESDIR}"/${P}-gherkin-bounds.patch
-)
-
-src_test() {
- local -x COLUMNS=80
-
- local EPYTEST_DESELECT=(
- # https://github.com/pytest-dev/pytest-bdd/issues/779
- tests/parser/test_errors.py::test_step_outside_scenario_or_background_error
- )
-
- distutils-r1_src_test
-}