Skip to content

Commit

Permalink
Add some debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
kovshenin committed Apr 20, 2024
1 parent a52aa1c commit 0dbe474
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sail/tests/end2end.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,16 @@ def test_000_config(self):
self.assertEqual(result.exit_code, 0)
self.assertIn('Option api-base set', result.output)

print(api_base)

# Delete a premium config if one is set
result = self.runner.invoke(cli, ['config', 'premium', '--delete'])
# We don't care about the result here.

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

Expand Down

0 comments on commit 0dbe474

Please sign in to comment.