Skip to content

Commit 7ba0b46

Browse files
author
Andrei Neagu
committed
making test async to try in ci
1 parent dfe5af5 commit 7ba0b46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

services/notifications/tests/unit/test_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ def _format_cli_error(result: Result) -> str:
2626
return f"Below exception was raised by the cli:\n{tb_message}"
2727

2828

29-
def test_process_cli_options(cli_runner: CliRunner):
29+
async def test_process_cli_options(cli_runner: CliRunner):
3030
result = cli_runner.invoke(main, ["--help"])
3131
print(result.stdout)
3232
assert result.exit_code == 0, _format_cli_error(result)

0 commit comments

Comments
 (0)