From 0bf4f962c500bc8c6f9aa79217e15c9a1e1d4bcf Mon Sep 17 00:00:00 2001 From: CI Date: Wed, 3 Feb 2021 17:06:08 -0400 Subject: [PATCH] cleaning up benchmarking docs --- algorithmia_benchmark.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/algorithmia_benchmark.py b/algorithmia_benchmark.py index 1d0cc87..788212b 100644 --- a/algorithmia_benchmark.py +++ b/algorithmia_benchmark.py @@ -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)