We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb2e21c commit c5ab6b3Copy full SHA for c5ab6b3
1 file changed
tests/unit_tests/cli/test_cli.py
@@ -721,13 +721,18 @@ def test_env_reload_server_side_error(runner: CliRunner):
721
ValueError("Error parsing parameters"),
722
"Error: task could not run: Error parsing parameters\n",
723
),
724
+ (
725
+ BlueskyStreamingError("streaming failed"),
726
+ "Error: streaming error: streaming failed\n",
727
+ ),
728
],
729
ids=[
730
"unknown_plan",
731
"unauthorised_access",
732
"invalid_parameters",
733
"remote_control",
734
"value_error",
735
+ "streaming_error",
736
737
)
738
def test_error_handling(exception, error_message, runner: CliRunner):
0 commit comments