update script
2 changed files+4−3
.github/workflows/benchmark.ymlmodified+2−1View file
@@ -23,7 +23,8 @@ jobs:
2323
2424 - name: Install package and dependencies
2525 run: |
26- python -m pip install -e zia_benchmark/
26+ cd zia_benchmark
27+ pip install -e .
2728
2829 - name: Run benchmarks
2930 env:
scripts/run_benchmarks.pymodified+2−2View file
@@ -2,7 +2,7 @@
22
33 import json
44 from pathlib import Path
5-import zia_benchmark
5+from zia_benchmark import run_benchmarks
66
77 def format_size(size_bytes: float) -> str:
88 """Format size in bytes to human readable string"""
@@ -23,7 +23,7 @@ def format_time(seconds: float) -> str:
2323 def main():
2424 # Run benchmarks
2525 print("Running benchmarks...")
26- results = zia_benchmark.run_benchmarks()
26+ results = run_benchmarks()
2727
2828 # Group results by dataset
2929 datasets = {}