* [Buildroot] [git commit] support/testing: add python-cloudpickle tests
@ 2026-03-29 10:30 Julien Olivain via buildroot
0 siblings, 0 replies; only message in thread
From: Julien Olivain via buildroot @ 2026-03-29 10:30 UTC (permalink / raw)
To: buildroot
commit: https://gitlab.com/buildroot.org/buildroot/-/commit/d25f18a3c3bc984df529cf2b264be2fe30b51257
branch: https://gitlab.com/buildroot.org/buildroot/-/tree/master
Add a basic runtime test for the python-cloudpickle package.
This test verifies the fundamental serialization capabilities of the
library by:
- Importing `cloudpickle`.
- Defining a simple Python function (fibonacci).
- Using `cloudpickle.dumps()` to serialize this function.
Signed-off-by: Xukai Wang <kingxukai@zohomail.com>
[Julien: fix flake8 warnings to fix check-package errors]
Signed-off-by: Julien Olivain <ju.o@free.fr>
---
DEVELOPERS | 2 ++
support/testing/tests/package/sample_python_cloudpickle.py | 8 ++++++++
support/testing/tests/package/test_python_cloudpickle.py | 12 ++++++++++++
3 files changed, 22 insertions(+)
diff --git a/DEVELOPERS b/DEVELOPERS
index b2d3305db6..767de9b964 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -3483,6 +3483,8 @@ N: Xukai Wang <kingxukai@zohomail.com>
F: package/python-cloudpickle/
F: package/python-farama-notifications/
F: package/python-gymnasium/
+F: support/testing/tests/package/sample_python_cloudpickle.py
+F: support/testing/tests/package/test_python_cloudpickle.py
N: Yair Ben Avraham <yairba@protonmail.com>
F: package/casync/
diff --git a/support/testing/tests/package/sample_python_cloudpickle.py b/support/testing/tests/package/sample_python_cloudpickle.py
new file mode 100644
index 0000000000..c17a73a415
--- /dev/null
+++ b/support/testing/tests/package/sample_python_cloudpickle.py
@@ -0,0 +1,8 @@
+import cloudpickle
+
+
+def fibonacci(n):
+ return n if n < 2 else fibonacci(n-1) + fibonacci(n-2)
+
+
+serialized = cloudpickle.dumps(fibonacci)
diff --git a/support/testing/tests/package/test_python_cloudpickle.py b/support/testing/tests/package/test_python_cloudpickle.py
new file mode 100644
index 0000000000..b28080f02e
--- /dev/null
+++ b/support/testing/tests/package/test_python_cloudpickle.py
@@ -0,0 +1,12 @@
+from tests.package.test_python import TestPythonPackageBase
+
+
+class TestPythonPy3Cloudpickle(TestPythonPackageBase):
+ __test__ = True
+ config = TestPythonPackageBase.config + \
+ """
+ BR2_PACKAGE_PYTHON3=y
+ BR2_PACKAGE_PYTHON_CLOUDPICKLE=y
+ """
+ sample_scripts = ["tests/package/sample_python_cloudpickle.py"]
+ timeout = 20
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-03-29 11:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-29 10:30 [Buildroot] [git commit] support/testing: add python-cloudpickle tests Julien Olivain via buildroot
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox