Skip to content

Commit 9e8c334

Browse files
authored
Merge pull request #1151 from cloudbees-oss/AIENG-222
[AIENG-222] Doc site update
2 parents 5595cca + 1164c05 commit 9e8c334

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Usage
22

3-
See https://www.launchableinc.com/docs/resources/cli-reference/ and
4-
https://www.launchableinc.com/docs/getting-started/.
3+
See https://help.launchableinc.com/resources/cli-reference/ and
4+
https://help.launchableinc.com/getting-started/.
55

66
# Development
77

launchable/commands/helper.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ def require_session(
3333
click.style(
3434
"No saved test session found.\n"
3535
"If you already created a test session on a different machine, use the --session option. "
36-
"See https://docs.launchableinc.com/sending-data-to-launchable/managing-complex-test-session-layouts",
36+
"See https://help.launchableinc.com/sending-data-to-launchable/managing-complex-test-session-layouts",
3737
fg="yellow"))
3838

3939

@@ -48,7 +48,7 @@ def require_build() -> str:
4848
"No saved build name found.\n"
4949
"To fix this, run `launchable record build`.\n"
5050
"If you already ran this command on a different machine, use the --session option. "
51-
"See https://www.launchableinc.com/docs/sending-data-to-launchable/using-the-launchable-cli/"
51+
"See https://help.launchableinc.com/sending-data-to-launchable/using-the-launchable-cli/"
5252
"recording-test-results-with-the-launchable-cli/managing-complex-test-session-layouts/",
5353
fg="yellow"))
5454
return b
@@ -117,7 +117,7 @@ def find_or_create_session(
117117
"The build name you provided ({}) is different from the last build name recorded on this machine ({}).\n"
118118
"Make sure to run `launchable record build --name {}` before you run this command.\n"
119119
"If you already recorded this build on a different machine, use the --session option instead of --build. "
120-
"See https://www.launchableinc.com/docs/sending-data-to-launchable/using-the-launchable-cli/"
120+
"See https://help.launchableinc.com/sending-data-to-launchable/using-the-launchable-cli/"
121121
"recording-test-results-with-the-launchable-cli/managing-complex-test-session-layouts/".format(
122122
build_name, saved_build_name, build_name), fg="yellow", ))
123123

launchable/commands/subset.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -593,7 +593,7 @@ def run(self):
593593
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
594594
else:
595595
print_error_and_die(
596-
"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
596+
"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
597597
Tracking.ErrorEvent.USER_ERROR)
598598

599599
# When Error occurs, return the test name as it is passed.

launchable/utils/launchable_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def __init__(self, tracking_client: Optional[TrackingClient] = None, base_url: s
2929
"Could not identify a Launchable organization/workspace. "
3030
"Confirm that you set LAUNCHABLE_TOKEN "
3131
"(or LAUNCHABLE_ORGANIZATION and LAUNCHABLE_WORKSPACE) environment variable(s)\n"
32-
"See https://docs.launchableinc.com/getting-started#setting-your-api-key")
32+
"See https://help.launchableinc.com/getting-started#setting-your-api-key")
3333
self._workspace_state_cache: Optional[Dict[str, Union[str, bool]]] = None
3434

3535
def request(

0 commit comments

Comments
 (0)