Skip to content

Commit

Permalink
logging
Browse files Browse the repository at this point in the history
  • Loading branch information
magdyksaleh committed Nov 8, 2024
1 parent 24576f7 commit faabd0b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion integration-tests-2/test_base_llms.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@
def run_lorax_container(config):
runner = DockerModelRunner()
runner.start_container(config)
runner.wait_for_healthy()
print("Started container")
try:
print("Waiting for container to be healthy")
runner.wait_for_healthy()
print("Container is healthy")
yield
finally:
print("Stopping container")
runner.stop_container()
print("Container stopped")


def test_base_mistral():
Expand Down

0 comments on commit faabd0b

Please sign in to comment.