From 177e9ad294300f5e7e639c26e9aa161530835891 Mon Sep 17 00:00:00 2001 From: Joseph Nke <76006812+jnke2016@users.noreply.github.com> Date: Mon, 27 Sep 2021 15:25:08 -0500 Subject: [PATCH] fix benchmark exit status (#1850) Fix exit status Authors: - Joseph Nke (https://github.com/jnke2016) Approvers: - Brad Rees (https://github.com/BradReesWork) - Rick Ratzel (https://github.com/rlratzel) URL: https://github.com/rapidsai/cugraph/pull/1850 --- benchmarks/python_e2e/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarks/python_e2e/main.py b/benchmarks/python_e2e/main.py index 65d4071693d..a01f3e612a9 100644 --- a/benchmarks/python_e2e/main.py +++ b/benchmarks/python_e2e/main.py @@ -110,7 +110,7 @@ def run(algos, funcs.teardown(*setup_objs) log("done.") - return success is True + return 0 if success else 1 if __name__ == "__main__":