diff --git a/DEVELOPERS b/DEVELOPERS index b2d3305db6..767de9b964 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -3483,6 +3483,8 @@ N: Xukai Wang 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 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