Skip to content

Commit

Permalink
add bench to makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Nov 27, 2021
1 parent 6b32948 commit c8e8210
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions polars/Makefile
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
BASE ?= master

fmt:
cargo fmt --all
Expand Down Expand Up @@ -54,3 +55,9 @@ pre-commit: fmt clippy clippy-default

check-features:
cargo hack check --each-feature --no-dev-deps --features private

bench-save:
cargo bench --features=random --bench $(BENCH) -- --save-baseline $(SAVE)

bench-cmp:
cargo bench --features=random --bench $(BENCH) -- --load-baseline $(FEAT) --baseline $(BASE)

0 comments on commit c8e8210

Please sign in to comment.