Skip to content

Commit

Permalink
More debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
kovshenin committed Apr 20, 2024
1 parent 0dbe474 commit 1b56de2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion sail/tests/end2end.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,10 @@ def test_000_config(self):
# We don't care about the result here.

def test_001_init(self):
result = self.runner.invoke(cli, ['init'])
result = self.runner.invoke(cli, ['-d', 'init'])
print(result)
print(result.output)
print(result.stderr)
self.assertEqual(result.exit_code, 0)
self.assertIn('The ship has sailed!', result.output)

Expand Down

0 comments on commit 1b56de2

Please sign in to comment.