Skip to content

Commit 65f8b73

Browse files
committed
Makefile: build test-p2p in release mode for faster execution
Even though the tests are already fast to run (40s in release mode vs 50s in debug mode on my machine).
1 parent 4d2ffc9 commit 65f8b73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ test-ledger: build-ledger ## Run ledger tests in release mode, requires nightly
224224

225225
.PHONY: test-p2p
226226
test-p2p: ## Run P2P tests
227-
cargo test -p p2p --tests
227+
cargo test -p p2p --tests --release
228228

229229
.PHONY: test-release
230230
test-release: ## Run tests in release mode

0 commit comments

Comments
 (0)