From 1579db22bbf46659461eb97dd2ece433e3b1281c Mon Sep 17 00:00:00 2001 From: Navin Kumar Date: Wed, 3 Jan 2024 21:07:19 -0800 Subject: [PATCH] test was missing the skip for non-supported timezones Signed-off-by: Navin Kumar --- integration_tests/src/main/python/date_time_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/integration_tests/src/main/python/date_time_test.py b/integration_tests/src/main/python/date_time_test.py index 84be8e58647..8eab7f1e231 100644 --- a/integration_tests/src/main/python/date_time_test.py +++ b/integration_tests/src/main/python/date_time_test.py @@ -429,6 +429,7 @@ def test_string_unix_timestamp_ansi_exception(): conf=ansi_enabled_conf) @tz_sensitive_test +@pytest.mark.skipif(not is_supported_time_zone(), reason="not all time zones are supported now, refer to https://github.com/NVIDIA/spark-rapids/issues/6839, please update after all time zones are supported") @pytest.mark.parametrize('parser_policy', ["CORRECTED", "EXCEPTION"], ids=idfn) def test_to_timestamp(parser_policy): gen = StringGen("[0-9]{3}[1-9]-(0[1-9]|1[0-2])-(0[1-9]|[1-2][0-9]) ([0-1][0-9]|2[0-3]):[0-5][0-9]:[0-5][0-9]")