This is an automated email from the ASF dual-hosted git repository.

vterentev pushed a commit to branch fix-dill
in repository https://gitbox.apache.org/repos/asf/beam.git

commit e0eed144b1ffcbc5d9169f18af2b81d1369fadcb
Author: Vitaly Terentyev <[email protected]>
AuthorDate: Mon Sep 15 12:11:45 2025 +0400

    Import dill for test
---
 sdks/python/apache_beam/transforms/ptransform_test.py | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sdks/python/apache_beam/transforms/ptransform_test.py 
b/sdks/python/apache_beam/transforms/ptransform_test.py
index 39d216c4b3b..76e7cca905c 100644
--- a/sdks/python/apache_beam/transforms/ptransform_test.py
+++ b/sdks/python/apache_beam/transforms/ptransform_test.py
@@ -728,7 +728,9 @@ class PTransformTest(unittest.TestCase):
       param(compat_version="2.66.0"),
   ])
   @pytest.mark.it_validatesrunner
+  @pytest.mark.uses_dill
   def test_group_by_key_importable_special_types(self, compat_version):
+    pytest.importorskip("dill")
     def generate(_):
       for _ in range(100):
         yield (coders_test_common.MyTypedNamedTuple(1, 'a'), 1)

Reply via email to