You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"ERROR: subset candidates are empty. Please set subset candidates or use `--get-tests-from-previous-sessions` option", # noqa E501
517
-
fg="red"),
518
-
err=True)
518
+
ifself.input_given:
519
+
msg="ERROR: Given arguments did not match any tests. They appear to be incorrect/non-existent."# noqa E501
520
+
else:
521
+
msg="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
522
+
click.echo(click.style(msg, fg="red"),err=True)
519
523
exit(1)
520
524
521
525
# When Error occurs, return the test name as it is passed.
0 commit comments