Skip to content

Commit

Permalink
cleaning up benchmarking docs
Browse files Browse the repository at this point in the history
  • Loading branch information
CI committed Feb 3, 2021
1 parent aad6b15 commit 0bf4f96
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions algorithmia_benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,9 @@ def workflow_test(algorithm, workflow):
name = test['name']
payload = test['payload']
timeout = test['timeout']
message = f"test {name} with {payload} for {algorithm.username}/{algorithm.algoname} with timeout {timeout}"
message = f"test {name} for {algorithm.username}/{algorithm.algoname} with timeout {timeout}"
print("starting " + message)
result = call_algo(algorithm, payload)
print(result)
_ = call_algo(algorithm, payload)
message = message + " succeeded."
print(message)

Expand Down

0 comments on commit 0bf4f96

Please sign in to comment.