MCPcopy Index your code
hub / github.com/pathwaycom/pathway / test_remove_errors

Function test_remove_errors

python/pathway/tests/test_column_properties.py:742–750  ·  view source on GitHub ↗
(append_only)

Source from the content-addressed store, hash-verified

740
741@pytest.mark.parametrize("append_only", [True, False])
742def test_remove_errors(append_only):
743 class Schema(pw.Schema, append_only=append_only):
744 a: int
745
746 table = table_from_datasource(TestDataSource(schema=Schema))
747 result = table.remove_errors()
748
749 assert result._id_column.properties.append_only == append_only
750 assert result.a._column.properties.append_only == append_only
751
752
753@pytest.mark.parametrize("append_only_1", [True, False])

Callers

nothing calls this directly

Calls 3

table_from_datasourceFunction · 0.90
TestDataSourceClass · 0.90
remove_errorsMethod · 0.80

Tested by

no test coverage detected