summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/python/python3-pytest_8.3.1.bb
diff options
context:
space:
mode:
authorTrevor Gamblin <tgamblin@baylibre.com>2024-08-07 11:43:27 -0400
committerRichard Purdie <richard.purdie@linuxfoundation.org>2024-08-08 14:28:49 +0100
commit9f5405a877bedf10ab0e66984bb2afef3c7bfdb9 (patch)
tree208286c5b58f84a09b37cd6e653f2886e04c51aa /meta/recipes-devtools/python/python3-pytest_8.3.1.bb
parent0f798d4ba2f4bd081065cd07f6b62328dc4ed18f (diff)
downloadpoky-9f5405a877bedf10ab0e66984bb2afef3c7bfdb9.tar.gz
python3-pytest: upgrade 8.3.1 -> 8.3.2
Changelog (https://docs.pytest.org/en/stable/changelog.html#pytest-8-3-2-2024-07-24): Bug fixes - #12652: Resolve regression conda environments where no longer being automatically detected. - by @RonnyPfannschmidt (From OE-Core rev: 3da3be882af416125fd4f280c0658dffeeac5072) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-pytest_8.3.1.bb')
-rw-r--r--meta/recipes-devtools/python/python3-pytest_8.3.1.bb33
1 files changed, 0 insertions, 33 deletions
diff --git a/meta/recipes-devtools/python/python3-pytest_8.3.1.bb b/meta/recipes-devtools/python/python3-pytest_8.3.1.bb
deleted file mode 100644
index 145c01a5db..0000000000
--- a/meta/recipes-devtools/python/python3-pytest_8.3.1.bb
+++ /dev/null
@@ -1,33 +0,0 @@
1SUMMARY = "Simple powerful testing with python"
2HOMEPAGE = "https://pypi.org/project/pytest/"
3DESCRIPTION = "The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries."
4
5LICENSE = "MIT"
6LIC_FILES_CHKSUM = "file://LICENSE;md5=bd27e41b6550fe0fc45356d1d81ee37c"
7
8SRC_URI[sha256sum] = "7e8e5c5abd6e93cb1cc151f23e57adc31fcf8cfd2a3ff2da63e23f732de35db6"
9
10DEPENDS += "python3-setuptools-scm-native"
11
12inherit update-alternatives pypi python_setuptools_build_meta
13
14RDEPENDS:${PN} += " \
15 python3-xml \
16 python3-debugger \
17 python3-doctest \
18 python3-iniconfig \
19 python3-json \
20 python3-packaging \
21 python3-pluggy \
22 python3-tomllib \
23"
24
25ALTERNATIVE:${PN} += "py.test pytest"
26
27NATIVE_LINK_NAME[pytest] = "${bindir}/pytest"
28ALTERNATIVE_TARGET[pytest] = "${bindir}/pytest"
29
30ALTERNATIVE_LINK_NAME[py.test] = "${bindir}/py.test"
31ALTERNATIVE_TARGET[py.test] = "${bindir}/py.test"
32
33BBCLASSEXTEND = "native nativesdk"