mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-05-08 17:11:56 +00:00
Changelog: ============ - Fixed snapshot comparison for dicts where keys are dataclass instances (or other custom objects used as dict keys), which previously caused corrupted snapshots - either collapsing multiple entries into one or appending duplicate keys on subsequent runs - Fixed tuple snapshot updates to compare elements positionally rather than using sequence alignment, so existing expressions (e.g. 3 + 3) are preserved when elements are removed from or added to a tuple. Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
22 lines
771 B
BlitzBasic
22 lines
771 B
BlitzBasic
SUMMARY = "golden master/snapshot/approval testing library which puts the values right into your source code"
|
|
HOMEPAGE = "https://15r10nk.github.io/inline-snapshot"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=7a35eb90dfdf03953dd2074d0fdba1d4"
|
|
|
|
DEPENDS = "python3-hatchling-native"
|
|
SRC_URI[sha256sum] = "1a97a50420de32b86c422cceadf950f1f343ba03a28b878a757ee492b741c093"
|
|
|
|
inherit pypi python_hatchling
|
|
|
|
PYPI_PACKAGE = "inline_snapshot"
|
|
UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}"
|
|
|
|
RDEPENDS:${PN} = "python3-asttokens \
|
|
python3-black \
|
|
python3-click \
|
|
python3-executing \
|
|
python3-rich \
|
|
python3-tomli \
|
|
python3-typing-extensions \
|
|
"
|