Skip to content

Commit

Permalink
let's try now :)
Browse files Browse the repository at this point in the history
  • Loading branch information
FBruzzesi committed Aug 20, 2024
1 parent 38007fd commit bd07b0e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tpch/benchmarks/queries_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@ def test_queries(benchmark: BenchmarkFixture, library: str) -> None:
region = nw.from_native(read_fn(DATA_FOLDER / "region.parquet")).lazy()
supplier = nw.from_native(read_fn(DATA_FOLDER / "supplier.parquet")).lazy()

_ = benchmark(q1, lineitem)
_ = benchmark(q2, region, nation, supplier, part, partsupp)
_ = benchmark(q3, customer, lineitem, orders)
q1_result = benchmark(q1, lineitem) # noqa: F841
q2_result = benchmark(q2, region, nation, supplier, part, partsupp) # noqa: F841
q3_result = benchmark(q3, customer, lineitem, orders) # noqa: F841

0 comments on commit bd07b0e

Please sign in to comment.