summaryrefslogtreecommitdiffstats
path: root/qtip/runner/benchmark.py
diff options
context:
space:
mode:
Diffstat (limited to 'qtip/runner/benchmark.py')
-rw-r--r--qtip/runner/benchmark.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/qtip/runner/benchmark.py b/qtip/runner/benchmark.py
index 46cb069d..56b5b30e 100644
--- a/qtip/runner/benchmark.py
+++ b/qtip/runner/benchmark.py
@@ -21,13 +21,10 @@ class Property:
class Benchmark:
"""Abstract class of QTIP benchmarks"""
- # paths to search for suites
_paths = [path.join(path.dirname(__file__), path.pardir, path.pardir,
'benchmarks')]
def __init__(self, name):
- """:param name: suite name"""
- # TODO(yujunz) check existence and expand to full path
self.name = name
self._abspath = self._find(name)
@@ -47,8 +44,7 @@ class Benchmark:
def describe(self):
"""description of benchmark"""
- # TODO(yujunz)
- # - read description from benchmark content
+ # TODO(yujunz) read description from benchmark content
return {
Property.NAME: self.name,
Property.DESCRIPTION: 'QTIP benchmark',