Skip to content

Commit

Permalink
chore: testing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
aorumbayev committed Sep 19, 2024
1 parent df610c0 commit 4b9b6ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/localnet/test_localnet_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4b9b6ee

Please sign in to comment.