Skip to content

Commit

Permalink
Xfail the test of pruning partition column for json read (#7447)
Browse files Browse the repository at this point in the history
Signed-off-by: Liangcai Li <liangcail@nvidia.com>
  • Loading branch information
firestarman authored Jan 3, 2023
1 parent 3e7daa0 commit 7af44a3
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Copyright (c) 2022, NVIDIA CORPORATION.
# Copyright (c) 2022-2023, NVIDIA CORPORATION.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
Expand All @@ -24,7 +24,8 @@
part1_gen = SetValuesGen(IntegerType(), [-10, -1, 0, 1, 10])
part2_gen = SetValuesGen(LongType(), [-100, 0, 100])

file_formats = ['parquet', 'orc', 'csv', 'json']
file_formats = ['parquet', 'orc', 'csv',
pytest.param('json', marks=pytest.mark.xfail(reason='https://github.com/NVIDIA/spark-rapids/issues/7446'))]
if os.environ.get('INCLUDE_SPARK_AVRO_JAR', 'false') == 'true':
file_formats = file_formats + ['avro']

Expand Down

0 comments on commit 7af44a3

Please sign in to comment.