Fix benchmark search path

This commit is contained in:
Michael Droettboom 2018-10-02 13:26:42 -04:00
parent eee0fa2c8a
commit 517369452b
1 changed files with 1 additions and 1 deletions

View File

@ -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: