@@ -36,6 +36,10 @@ def get_slice_name():
3636 return yatest .common .get_param ("kikimr.ci.cluster_name" , None )
3737
3838
39+ def get_configure_binary_path ():
40+ return yatest .common .binary_path ("ydb/tools/cfg/bin/ydb_configure" )
41+
42+
3943def next_version_kikimr_driver_path ():
4044 return yatest .common .get_param ("kikimr.ci.kikimr_driver_next" , None )
4145
@@ -64,6 +68,7 @@ def setup_class(cls):
6468
6569 logger .info ('setup_class started for slice = {}' .format (cls .slice_name ))
6670 cls .kikimr_cluster = ExternalKiKiMRCluster (
71+ kikimr_configure_binary_path = get_configure_binary_path (),
6772 config_path = get_slice_directory (),
6873 kikimr_path = kikimr_driver_path (),
6974 kikimr_next_path = next_version_kikimr_driver_path (),
@@ -187,6 +192,7 @@ def test_liveness_and_safety(self):
187192 logger .info ('slice = {}' .format (slice_name ))
188193 assert slice_name is not None
189194 kikimr_cluster = ExternalKiKiMRCluster (
195+ kikimr_configure_binary_path = get_configure_binary_path (),
190196 config_path = get_slice_directory (),
191197 kikimr_path = kikimr_driver_path (),
192198 kikimr_next_path = next_version_kikimr_driver_path (),
0 commit comments