Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 3 additions & 3 deletions launchable/commands/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"))


Expand All @@ -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
Expand Down Expand Up @@ -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", ))

Expand Down
2 changes: 1 addition & 1 deletion launchable/commands/subset.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion launchable/utils/launchable_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
Loading