Skip to content

Commit

Permalink
Address comments
Browse files Browse the repository at this point in the history
  • Loading branch information
winningsix committed Dec 1, 2023
1 parent 950ac3c commit eb0c85e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion integration_tests/src/main/python/csv_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
4 changes: 3 additions & 1 deletion integration_tests/src/main/python/json_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit eb0c85e

Please sign in to comment.