From 1164c0518fb7b101ea490ebcfc08950512e45740 Mon Sep 17 00:00:00 2001 From: Kohsuke Kawaguchi Date: Mon, 22 Sep 2025 11:28:16 +0900 Subject: [PATCH] [AIENG-222] doc site update --- README.md | 4 ++-- launchable/commands/helper.py | 6 +++--- launchable/commands/subset.py | 2 +- launchable/utils/launchable_client.py | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 2079ae423..820b3efce 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Usage -See https://www.launchableinc.com/docs/resources/cli-reference/ and -https://www.launchableinc.com/docs/getting-started/. +See https://help.launchableinc.com/resources/cli-reference/ and +https://help.launchableinc.com/getting-started/. # Development diff --git a/launchable/commands/helper.py b/launchable/commands/helper.py index 6606d518c..c6d463102 100644 --- a/launchable/commands/helper.py +++ b/launchable/commands/helper.py @@ -33,7 +33,7 @@ def require_session( click.style( "No saved test session found.\n" "If you already created a test session on a different machine, use the --session option. " - "See https://docs.launchableinc.com/sending-data-to-launchable/managing-complex-test-session-layouts", + "See https://help.launchableinc.com/sending-data-to-launchable/managing-complex-test-session-layouts", fg="yellow")) @@ -48,7 +48,7 @@ def require_build() -> str: "No saved build name found.\n" "To fix this, run `launchable record build`.\n" "If you already ran this command on a different machine, use the --session option. " - "See https://www.launchableinc.com/docs/sending-data-to-launchable/using-the-launchable-cli/" + "See https://help.launchableinc.com/sending-data-to-launchable/using-the-launchable-cli/" "recording-test-results-with-the-launchable-cli/managing-complex-test-session-layouts/", fg="yellow")) return b @@ -117,7 +117,7 @@ def find_or_create_session( "The build name you provided ({}) is different from the last build name recorded on this machine ({}).\n" "Make sure to run `launchable record build --name {}` before you run this command.\n" "If you already recorded this build on a different machine, use the --session option instead of --build. " - "See https://www.launchableinc.com/docs/sending-data-to-launchable/using-the-launchable-cli/" + "See https://help.launchableinc.com/sending-data-to-launchable/using-the-launchable-cli/" "recording-test-results-with-the-launchable-cli/managing-complex-test-session-layouts/".format( build_name, saved_build_name, build_name), fg="yellow", )) diff --git a/launchable/commands/subset.py b/launchable/commands/subset.py index f93b0c3d6..0709a3b0d 100644 --- a/launchable/commands/subset.py +++ b/launchable/commands/subset.py @@ -593,7 +593,7 @@ def run(self): print_error_and_die("ERROR: Given arguments did not match any tests. They appear to be incorrect/non-existent.", Tracking.ErrorEvent.USER_ERROR) # noqa E501 else: print_error_and_die( - "ERROR: Expecting tests to be given, but none provided. See https://www.launchableinc.com/docs/features/predictive-test-selection/requesting-and-running-a-subset-of-tests/subsetting-with-the-launchable-cli/ and provide ones, or use the `--get-tests-from-previous-sessions` option", # noqa E501 + "ERROR: Expecting tests to be given, but none provided. See https://help.launchableinc.com/features/predictive-test-selection/requesting-and-running-a-subset-of-tests/subsetting-with-the-launchable-cli/ and provide ones, or use the `--get-tests-from-previous-sessions` option", # noqa E501 Tracking.ErrorEvent.USER_ERROR) # When Error occurs, return the test name as it is passed. diff --git a/launchable/utils/launchable_client.py b/launchable/utils/launchable_client.py index e02d3733b..5013171eb 100644 --- a/launchable/utils/launchable_client.py +++ b/launchable/utils/launchable_client.py @@ -29,7 +29,7 @@ def __init__(self, tracking_client: Optional[TrackingClient] = None, base_url: s "Could not identify a Launchable organization/workspace. " "Confirm that you set LAUNCHABLE_TOKEN " "(or LAUNCHABLE_ORGANIZATION and LAUNCHABLE_WORKSPACE) environment variable(s)\n" - "See https://docs.launchableinc.com/getting-started#setting-your-api-key") + "See https://help.launchableinc.com/getting-started#setting-your-api-key") self._workspace_state_cache: Optional[Dict[str, Union[str, bool]]] = None def request(