Skip to content

Commit 3fc95b6

Browse files
committed
Hot Backup only tested in cluster
1 parent 199f02c commit 3fc95b6

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

tests/test_backup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@
1212

1313

1414
@pytest.mark.asyncio
15-
async def test_backup(url, sys_db_name, bad_db, token):
15+
async def test_backup(url, sys_db_name, bad_db, token, cluster):
16+
if not cluster:
17+
pytest.skip("Backup tests are only applicable to cluster setups.")
18+
1619
with pytest.raises(BackupCreateError):
1720
await bad_db.backup.create()
1821
with pytest.raises(BackupGetError):

0 commit comments

Comments
 (0)