Skip to content

Commit

Permalink
remove print statements
Browse files Browse the repository at this point in the history
  • Loading branch information
spal1 committed Oct 15, 2024
1 parent 336fd95 commit 3bae49a
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions truss/tests/test_model_inference.py
Original file line number Diff line number Diff line change
Expand Up @@ -795,7 +795,6 @@ def predict(self, model_input):
in container.logs()
)
assert "DOING IT IN beta" in container.logs()
print(container.logs())

# Test a truss that uses the environment in load()
model = """
Expand Down Expand Up @@ -853,7 +852,6 @@ def predict(self, model_input):
in container.logs()
)
assert "DOING IT LIVE" in container.logs()
print(container.logs())

# Test a truss with no setup_environment() function defined
model = """
Expand All @@ -868,7 +866,6 @@ def predict(self, model_input):
)
time.sleep(30)
assert "No model.setup_environment definition provided" in container.logs()
print(container.logs())


# Tracing ##############################################################################
Expand Down

0 comments on commit 3bae49a

Please sign in to comment.