Skip to content

Commit b1c49e9

Browse files
committed
Add version with support for incremental backups
1 parent 6c3d31c commit b1c49e9

2 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/main.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ env:
2727
WEAVIATE_133: 1.33.10
2828
WEAVIATE_134: 1.34.5
2929
WEAVIATE_135: 1.35.0
30-
WEAVIATE_136: 1.36.0-rc.0
30+
WEAVIATE_136: 1.36.0
31+
WEAVIATE_137: 1.37.0-dev-29d5c87.amd64
3132

3233

3334
jobs:
@@ -310,6 +311,7 @@ jobs:
310311
$WEAVIATE_134,
311312
$WEAVIATE_135,
312313
$WEAVIATE_136
314+
$WEAVIATE_137
313315
]
314316
steps:
315317
- name: Checkout

integration/test_backup_v4.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -744,6 +744,9 @@ def test_overwrite_alias_true(
744744

745745
def test_incremental_backup(client: weaviate.WeaviateClient, request: SubRequest) -> None:
746746
"""Create and restore incremental backup."""
747+
if client._connection._weaviate_version.is_lower_than(1, 37, 0):
748+
pytest.skip("List backups is only supported from 1.37.0")
749+
747750
backup_id = unique_backup_id(request.node.name)
748751
base_backup_id = backup_id + "_base"
749752

0 commit comments

Comments
 (0)