Skip to content

Commit c32f854

Browse files
committed
Add skipping test if ptrack not supperted
1 parent b4d565f commit c32f854

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/catchup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,6 +1502,9 @@ def test_dry_run_catchup_ptrack(self):
15021502
"""
15031503
Test dry-run option for catchup in incremental ptrack mode
15041504
"""
1505+
if not self.ptrack:
1506+
return unittest.skip('Skipped because ptrack support is disabled')
1507+
15051508
# preparation 1: source
15061509
src_pg = self.make_simple_node(
15071510
base_dir = os.path.join(module_name, self.fname, 'src'),

0 commit comments

Comments
 (0)