Commit 51736945 authored by Michael Droettboom's avatar Michael Droettboom

Fix benchmark search path

parent eee0fa2c
......@@ -74,7 +74,7 @@ def parse_numpy_benchmark(filename):
def get_numpy_benchmarks():
root = Path('../numpy-benchmarks/benchmarks')
root = Path(__file__).resolve().parent / 'benchmarks'
for filename in root.iterdir():
name = filename.stem
if name in SKIP:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment