Skip to content

Commit e68132d

Browse files
committed
tests: fix tests.archive.ArchiveTest.test_basic_master_and_replica_concurrent_archiving
1 parent 469c5a1 commit e68132d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/archive.py

+3
Original file line numberDiff line numberDiff line change
@@ -895,6 +895,9 @@ def test_basic_master_and_replica_concurrent_archiving(self):
895895
set replica with archiving,
896896
make sure that archiving on both node is working.
897897
"""
898+
if self.pg_config_version < self.version_to_num('9.6.0'):
899+
return unittest.skip('You need PostgreSQL >= 9.6 for this test')
900+
898901
fname = self.id().split('.')[3]
899902
backup_dir = os.path.join(self.tmp_path, module_name, fname, 'backup')
900903
master = self.make_simple_node(

0 commit comments

Comments
 (0)