File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,9 @@ def setUp(self):
14
14
self .fname = self .id ().split ('.' )[3 ]
15
15
16
16
# @unittest.expectedFailure
17
- @unittest .skip ("skip" )
17
+ @unittest .skipUnless ('PGPROBACKUP_MANUAL' in os .environ and os .environ ['PGPROBACKUP_MANUAL' ] == 'ON' , 'skip' )
18
+ @unittest .skipUnless ('PGPROBACKUP_SSH_AGENT_PATH' in os .environ , 'skip' )
19
+ # @unittest.skip("skip")
18
20
def test_catchup_with_different_remote_major_pg (self ):
19
21
"""
20
22
Decription in jira issue PBCKP-236
@@ -33,7 +35,8 @@ def test_catchup_with_different_remote_major_pg(self):
33
35
self .verbose = True
34
36
self .remote = True
35
37
# please use your own local path
36
- pg_path_remote_version = '/home/avaness/postgres/postgres.build.clean/bin'
38
+ # pg_path_remote_version = '/home/avaness/postgres/postgres.build.clean/bin/'
39
+ pg_path_remote_version = os .environ ['PGPROBACKUP_SSH_AGENT_PATH' ]
37
40
38
41
src_pg = self .make_simple_node (
39
42
base_dir = os .path .join (module_name , self .fname , 'src' ),
You can’t perform that action at this time.
0 commit comments