Skip to content
This repository was archived by the owner on Apr 18, 2025. It is now read-only.

Commit 32baff1

Browse files
committed
makefile
1 parent 1971a5e commit 32baff1

File tree

1 file changed

+9
-18
lines changed

1 file changed

+9
-18
lines changed

Makefile

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -29,35 +29,26 @@ clippy: ## Run clippy checks over all workspace members
2929
test: ## Run tests for all the workspace members
3030
@cargo test --release -p integration --test unit_tests
3131

32-
mock:
33-
@cargo test --release -p integration --test mock_tests test_mock_prove -- --exact --nocapture
34-
3532
chain-prover:
3633
@cargo run --bin chain_prover --release
3734

35+
test-mock-prove:
36+
@cargo test --release -p integration --test mock_tests test_mock_prove -- --exact --nocapture
37+
3838
test-inner-prove:
39-
@cargo test --features prove_verify --release test_inner_prove_verify
39+
@cargo test --release -p integration --test inner_tests test_inner_prove_verify -- --exact --nocapture
4040

4141
test-chunk-prove:
42-
@cargo test --features prove_verify --release test_chunk_prove_verify
43-
44-
test-e2e-prove:
45-
@SCROLL_PROVER_DUMP_YUL=true cargo test --release -p integration --test e2e_tests test_e2e_prove_verify
46-
47-
test-pi:
48-
@cargo test --features prove_verify --release test_batch_pi
42+
@cargo test --release -p integration --test chunk_tests test_chunk_prove_verify -- --exact --nocapture
4943

5044
test-batch-prove:
51-
@cargo test --release -p integration --test batch_tests test_batch_prove_verify
45+
@SCROLL_PROVER_DUMP_YUL=true cargo test --release -p integration --test batch_tests test_batch_prove_verify -- --exact --nocapture
5246

53-
test-batches-with-each-chunk-num-prove:
54-
@cargo test --features prove_verify --release test_batches_with_each_chunk_num_prove_verify
47+
test-e2e-prove:
48+
@SCROLL_PROVER_DUMP_YUL=true cargo test --release -p integration --test e2e_tests test_e2e_prove_verify -- --exact --nocapture
5549

5650
test-ccc:
57-
@cargo test --release test_capacity_checker
58-
59-
rows:
60-
@cargo test --features prove_verify --release estimate_circuit_rows
51+
@cargo test --release -p integration --test unit_tests test_capacity_checker -- --exact --nocapture
6152

6253
# Could be called as `make download-setup -e degree=DEGREE params_dir=PARAMS_DIR`.
6354
# As default `degree=25` and `params_dir=./integration/params`.

0 commit comments

Comments
 (0)