Skip to content

Commit

Permalink
more exclusions
Browse files Browse the repository at this point in the history
  • Loading branch information
sungwy committed Feb 29, 2024
1 parent a89200a commit 40986fa
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 10 additions & 2 deletions tests/api/exclude/pyiceberg-0.6.0.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,13 @@


exclude:
- pyiceberg.table.create_mapping_from_schema
- pyiceberg.cli.console.run
- pyiceberg.table.create_mapping_from_schema # Removed import (Alias) #441
- pyiceberg.table.Table.next_sequence_number # Table -> TableMetadata #471
- pyiceberg.table.Table.new_snapshot_id # Table -> TableMetadata #471
- pyiceberg.table.StaticTable.next_sequence_number # Table -> TableMetadata #471
- pyiceberg.table.StaticTable.new_snapshot_id # Table -> TableMetadata #471
- pyiceberg.table.Transaction.add_snapshot # removed in favor of directly using TableUpdate and TableRequirement #471
- pyiceberg.table.Transaction.set_ref_snapshot # removed in favor of directly using TableUpdate and TableRequirement #471
- pyiceberg.catalog.rest.TokenResponse.* # nullability change #466
- pyiceberg.io.pyarrow.write_file # Parameter change #471
- pyiceberg.cli.console.run # Positional parameter change #472
4 changes: 2 additions & 2 deletions tests/api/test_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ def test_breaking_change() -> None:
If a breaking change is intended, the Exclusion can be added as:
```
- obj_path: pyiceberg.path_to_object
kind: griffe.enumerations.BreakageKind.name
exclude
- pyiceberg.path_to_object # justification as comment #PRNUM
```
to the corresponding "tests.api.exclude.<release>.yaml" file.
"""
Expand Down

0 comments on commit 40986fa

Please sign in to comment.