mirror of https://github.com/pyodide/pyodide.git
Fix benchmark search path
This commit is contained in:
parent
eee0fa2c8a
commit
517369452b
|
@ -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:
|
||||
|
|
Loading…
Reference in New Issue