From aaaefa5caf53aca9eadbb340e60e317278e7455e Mon Sep 17 00:00:00 2001 From: Andy Grove Date: Tue, 12 Apr 2022 11:10:41 -0600 Subject: [PATCH] skip tests that are failing due to issue 5211 Signed-off-by: Andy Grove --- integration_tests/src/main/python/csv_test.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integration_tests/src/main/python/csv_test.py b/integration_tests/src/main/python/csv_test.py index 3a82223efa3..5a65efa56bd 100644 --- a/integration_tests/src/main/python/csv_test.py +++ b/integration_tests/src/main/python/csv_test.py @@ -239,7 +239,7 @@ def read_impl(spark): pytest.param('simple_float_values.csv', _int_schema, {'header': 'true'}), pytest.param('simple_float_values.csv', _long_schema, {'header': 'true'}), pytest.param('simple_float_values.csv', _float_schema, {'header': 'true'}), - pytest.param('simple_float_values.csv', _double_schema, {'header': 'true'}), + pytest.param('simple_float_values.csv', _double_schema, {'header': 'true'}, marks=pytest.mark.xfail(reason='https://github.com/NVIDIA/spark-rapids/issues/5211')), pytest.param('simple_float_values.csv', _decimal_10_2_schema, {'header': 'true'}), pytest.param('simple_float_values.csv', _decimal_10_3_schema, {'header': 'true'}), pytest.param('simple_boolean_values.csv', _bool_schema, {'header': 'true'}),