Skip to content

Commit

Permalink
Printing output when applications list fails
Browse files Browse the repository at this point in the history
  • Loading branch information
machristie committed Apr 19, 2018
1 parent 518986c commit c3e5e4e
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_cloudlaunch_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ def test_list_applications(self):
runner = CliRunner()
result = runner.invoke(cloudlaunch_cli.main.client,
args=["applications", "list"])
assert result.exit_code == 0
self.assertEqual(result.exit_code, 0,
msg="listing applications failed: " + result.output)
# Verify result columns are in list output
assert 'Genomics Virtual Lab' in result.output
assert 'CloudLaunch integration' in result.output
Expand Down

0 comments on commit c3e5e4e

Please sign in to comment.