From 4b9b6ee976e29e82226059df3742a58a9414a801 Mon Sep 17 00:00:00 2001 From: Altynbek Orumbayev Date: Thu, 19 Sep 2024 18:29:15 +0200 Subject: [PATCH] chore: testing ci --- tests/localnet/test_localnet_start.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/localnet/test_localnet_start.py b/tests/localnet/test_localnet_start.py index 7a535bd6..da98ca3f 100644 --- a/tests/localnet/test_localnet_start.py +++ b/tests/localnet/test_localnet_start.py @@ -281,7 +281,8 @@ def test_localnet_img_check_cmd_error(app_dir_mock: AppDirs) -> None: @pytest.mark.usefixtures("proc_mock", "_health_success", "_localnet_up_to_date", "_mock_proc_with_running_localnet") def test_localnet_start_with_custom_config_dir(tmp_path_factory: pytest.TempPathFactory) -> None: custom_config_dir = tmp_path_factory.mktemp("custom_config") - result = invoke(f"localnet start --config-dir {str(custom_config_dir.absolute()).replace("\\", r"\\")}") + config_dir = str(custom_config_dir.absolute()).replace("\\", "/") + result = invoke(f"localnet start --config-dir {config_dir}") print(result.output.splitlines()) # noqa: T201 assert result.exit_code == 0