diff --git a/integration_tests/src/main/python/csv_test.py b/integration_tests/src/main/python/csv_test.py index 196c997c1e3..3fb83a665e3 100644 --- a/integration_tests/src/main/python/csv_test.py +++ b/integration_tests/src/main/python/csv_test.py @@ -617,7 +617,9 @@ def do_read(spark): cpu_fallback_class_name = cpu_scan_class, conf = conf) else: - if is_not_utc(): # non UTC is not support for csv, skip capture check + if is_not_utc(): + # non UTC is not support for csv, skip capture check + # tracked in https://github.com/NVIDIA/spark-rapids/issues/9913 assert_gpu_and_cpu_are_equal_collect(lambda spark: do_read(spark), conf = conf) else: assert_cpu_and_gpu_are_equal_collect_with_capture( diff --git a/integration_tests/src/main/python/json_test.py b/integration_tests/src/main/python/json_test.py index d95b67dd49c..d8aceb3e705 100644 --- a/integration_tests/src/main/python/json_test.py +++ b/integration_tests/src/main/python/json_test.py @@ -246,7 +246,9 @@ def do_read(spark): if timestamp_type == "TIMESTAMP_LTZ": - if is_not_utc(): # non UTC is not support for csv, skip capture check + if is_not_utc(): + # non UTC is not support for json, skip capture check + # Tracked in https://github.com/NVIDIA/spark-rapids/issues/9912 assert_gpu_and_cpu_are_equal_collect(lambda spark: do_read(spark), conf = updated_conf) else: assert_cpu_and_gpu_are_equal_collect_with_capture(