Skip to content

Commit

Permalink
[MAINTENANCE] Remove xfailed test (#10843)
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFarmer authored Jan 13, 2025
1 parent 3a2ad9b commit 95ab57d
Showing 1 changed file with 0 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,31 +76,6 @@ def test_success_complete(batch_for_datasource: Batch) -> None:
assert result_dict["observed_value"] in type_list


@pytest.mark.xfail
@parameterize_batch_for_data_sources(
data_source_configs=[DatabricksDatasourceTestConfig()],
data=DATA,
)
def test_success_complete_errors(batch_for_datasource: Batch) -> None:
# TODO: get this fixed
type_list = [
"INTEGER",
"Integer",
"int",
"int64",
"int32",
"IntegerType",
"_CUSTOM_DECIMAL",
]
expectation = gxe.ExpectColumnValuesToBeInTypeList(column=INTEGER_COLUMN, type_list=type_list)
result = batch_for_datasource.validate(expectation, result_format=ResultFormat.COMPLETE)
result_dict = result.to_json_dict()["result"]

assert result.success
assert isinstance(result_dict, dict)
assert result_dict["observed_value"] in type_list


@parameterize_batch_for_data_sources(
data_source_configs=[PandasDataFrameDatasourceTestConfig()], data=DATA
)
Expand Down

0 comments on commit 95ab57d

Please sign in to comment.