From 1ff65ed841b3f848ebf44ea8e3bd608220150ebf Mon Sep 17 00:00:00 2001 From: Yujun Zhang Date: Wed, 7 Dec 2016 16:25:18 +0800 Subject: Fix bugs in `runner/benchmark` - should inherit `object` for common methods - should use instance class in abstract method Change-Id: I78c08476da544402851e4b53e2d45c32a7f86722 Signed-off-by: Yujun Zhang --- qtip/runner/benchmark.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'qtip') diff --git a/qtip/runner/benchmark.py b/qtip/runner/benchmark.py index 56b5b30e..58e5a8d9 100644 --- a/qtip/runner/benchmark.py +++ b/qtip/runner/benchmark.py @@ -18,7 +18,7 @@ class Property: ABSPATH = 'abspath' -class Benchmark: +class Benchmark(object): """Abstract class of QTIP benchmarks""" _paths = [path.join(path.dirname(__file__), path.pardir, path.pardir, @@ -40,7 +40,7 @@ class Benchmark: def list_all(cls): """list all available benchmarks""" names = chain.from_iterable([listdir(p) for p in cls._paths]) - return [Benchmark(name).describe() for name in names] + return [cls(name).describe() for name in names] def describe(self): """description of benchmark""" -- cgit 1.2.3-korg