Skip to content

Commit

Permalink
make: add test-benches recipe and add it to test
Browse files Browse the repository at this point in the history
  • Loading branch information
tzemanovic committed Sep 20, 2023
1 parent 05a6088 commit 6f0033e
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ reset-ledger:
audit:
$(cargo) audit $(foreach ignore,$(audit-ignores), --ignore $(ignore))

test: test-unit test-e2e test-wasm
test: test-unit test-e2e test-wasm test-benches

test-coverage:
# Run integration tests with pre-built MASP proofs
Expand Down Expand Up @@ -207,6 +207,10 @@ test-debug:
--nocapture \
-Z unstable-options --report-time

# Test that the benchmarks run successfully without performing measurement
test-benches:
$(cargo) +$(nightly) test --package namada_benchmarks --benches

# Run PoS state machine tests
test-pos-sm:
cd proof_of_stake && \
Expand Down

0 comments on commit 6f0033e

Please sign in to comment.