From ae33cc4197ba1de965ba2b4843a967e7a61ff1b6 Mon Sep 17 00:00:00 2001 From: Liangcai Li Date: Tue, 8 Jun 2021 15:04:39 +0800 Subject: [PATCH] Ignore order for map udf test (#2627) Signed-off-by: Firestarman --- integration_tests/src/main/python/udf_test.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/integration_tests/src/main/python/udf_test.py b/integration_tests/src/main/python/udf_test.py index 9ced5c7dd05..02c257a9167 100644 --- a/integration_tests/src/main/python/udf_test.py +++ b/integration_tests/src/main/python/udf_test.py @@ -241,6 +241,7 @@ def group_size_udf(key, pdf): # ======= Test map in Pandas ======= +@ignore_order @pytest.mark.parametrize('data_gen', [LongGen()], ids=idfn) def test_map_apply_udf(data_gen): def pandas_filter(iterator): @@ -253,6 +254,7 @@ def pandas_filter(iterator): conf=arrow_udf_conf) +@ignore_order(local=True) @pytest.mark.parametrize('data_gen', data_gens_nested_for_udf, ids=idfn) def test_pandas_map_udf_nested_type(data_gen): # Supported UDF output types by plugin: (commonCudfTypes + ARRAY).nested() + STRUCT