mirror of
https://git.yoctoproject.org/poky
synced 2026-02-06 16:56:37 +01:00
Changelog (https://hypothesis.readthedocs.io/en/latest/changes.html): 6.105.1 - 2024-07-07 - This patch iterates on our experimental support for alternative backends (Alternative backends for Hypothesis). See pull request #4029 for details. 6.105.0 - 2024-07-04 - This release improves support for Django 5.0, and drops support for end-of-life Django versions (< 4.2). - Thanks to Joshua Munn for this contribution. 6.104.4 - 2024-07-04 - Clean up internal cache implementation. 6.104.3 - 2024-07-04 - This patch updates our autoformatting tools, improving our code style without any API changes. 6.104.2 - 2024-06-29 - This patch fixes an issue when realizing symbolics with our experimental backend setting. 6.104.1 - 2024-06-25 - Improves internal test coverage. 6.104.0 - 2024-06-24 - This release adds strategies for Django’s ModelChoiceField and ModelMultipleChoiceField (issue #4010). - Thanks to Joshua Munn for this contribution. 6.103.5 - 2024-06-24 - Fixes and reinstates full coverage of internal tests, which was accidentally disabled in pull request #3935. - Closes issue #4003. 6.103.4 - 2024-06-24 - This release prevents a race condition inside internal cache implementation. 6.103.3 - 2024-06-24 - This patch updates our vendored list of top-level domains, which is used by the provisional domains() strategy. (From OE-Core rev: 9b0e9fbf23e5ac53f8eda76ca2f9af904f6fa1cd) Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
40 lines
1.0 KiB
BlitzBasic
40 lines
1.0 KiB
BlitzBasic
SUMMARY = "A library for property-based testing"
|
|
HOMEPAGE = "https://github.com/HypothesisWorks/hypothesis/tree/master/hypothesis-python"
|
|
LICENSE = "MPL-2.0"
|
|
LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=4ee62c16ebd0f4f99d906f36b7de8c3c"
|
|
|
|
PYPI_PACKAGE = "hypothesis"
|
|
|
|
inherit pypi setuptools3 ptest
|
|
|
|
SRC_URI += " \
|
|
file://run-ptest \
|
|
file://test_binary_search.py \
|
|
file://test_rle.py \
|
|
"
|
|
|
|
SRC_URI[sha256sum] = "d4eedb42193da9507623f4fe27fd38f715ec19ad30ad7c30e3b25594c0b491dc"
|
|
|
|
RDEPENDS:${PN} += " \
|
|
python3-attrs \
|
|
python3-compression \
|
|
python3-core \
|
|
python3-json \
|
|
python3-pytest \
|
|
python3-sortedcontainers \
|
|
python3-statistics \
|
|
python3-unittest \
|
|
"
|
|
|
|
RDEPENDS:${PN}-ptest += " \
|
|
python3-unittest-automake-output \
|
|
"
|
|
|
|
do_install_ptest() {
|
|
install -d ${D}${PTEST_PATH}/examples
|
|
install -m 0755 ${UNPACKDIR}/test_binary_search.py ${D}${PTEST_PATH}/examples/
|
|
install -m 0755 ${UNPACKDIR}/test_rle.py ${D}${PTEST_PATH}/examples/
|
|
}
|
|
|
|
BBCLASSEXTEND = "native nativesdk"
|