Skip to content

Commit febd6c2

Browse files
committed
Don't intercept exceptions when running CLI tests
1 parent 885dd30 commit febd6c2

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

tests/test_riemann_command.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
def run_cli(args):
1212
args = [u'-T', u'none'] + list(args)
1313
runner = click.testing.CliRunner()
14-
result = runner.invoke(riemann_client.command.main, args)
14+
result = runner.invoke(riemann_client.command.main, args, catch_exceptions=False)
1515
assert result.exit_code == 0
1616
return result
1717

0 commit comments

Comments
 (0)