@@ -19,7 +19,7 @@ def import_script(name):
1919class TestIntegration :
2020 def test_backup_lifecycle (self , temp_repo ):
2121 """Test init, backup, and find flow."""
22- runner = utils .KopiaRunner ()
22+ runner = utils .KopiaRunner (skip_config = True )
2323 repo_config = temp_repo ['config' ]
2424 source_dir = temp_repo ['source_dir' ]
2525
@@ -38,7 +38,7 @@ def test_backup_lifecycle(self, temp_repo):
3838
3939 # 3. Verify Snapshot exists
4040 success , stdout , _ , _ = runner .run (
41- ["snapshot" , "list" , "--json" , "--config-file" , repo_config ['config_file_path ' ]],
41+ ["snapshot" , "list" , "--json" , "--config-file" , repo_config ['local_config_file_path ' ]],
4242 repo_config = repo_config
4343 )
4444 assert success
@@ -51,7 +51,7 @@ def test_backup_lifecycle(self, temp_repo):
5151 assert matches [0 ]['size' ] == 11 # "Hello Kopia" is 11 bytes
5252
5353 def test_incremental_backup (self , temp_repo ):
54- runner = utils .KopiaRunner ()
54+ runner = utils .KopiaRunner (skip_config = True )
5555 repo_config = temp_repo ['config' ]
5656 source_dir = temp_repo ['source_dir' ]
5757
0 commit comments