Skip to content

Commit

Permalink
tests: bing: Log the status of the model
Browse files Browse the repository at this point in the history
  • Loading branch information
pranayadmn authored Mar 17, 2024
1 parent 5d46daa commit 9f12e7e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tests/test_bing.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,10 @@ def generate_response() -> str:
class TestOutput:
def test_output(self):
response = generate_response()

if (len(response) > 0):
print("✅ Bing is up!")
else:
print("❌ Bing is down...")

assert response.startswith("START") and response.endswith("END")

0 comments on commit 9f12e7e

Please sign in to comment.