File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change @@ -234,6 +234,26 @@ test-release: ## Run tests in release mode
234
234
test-vrf : # # Run VRF tests, requires nightly Rust
235
235
@cd vrf && cargo +nightly test --release -- -Z unstable-options --report-time
236
236
237
+ .PHONY : nextest
238
+ nextest : # # Run tests with cargo-nextest for faster execution
239
+ @cargo nextest run
240
+
241
+ .PHONY : nextest-release
242
+ nextest-release : # # Run tests in release mode with cargo-nextest
243
+ @cargo nextest run --release
244
+
245
+ .PHONY : nextest-p2p
246
+ nextest-p2p : # # Run P2P tests with cargo-nextest
247
+ @cargo nextest run -p p2p --tests
248
+
249
+ .PHONY : nextest-ledger
250
+ nextest-ledger : build-ledger # # Run ledger tests with cargo-nextest, requires nightly Rust
251
+ @cd ledger && cargo +nightly nextest run --release
252
+
253
+ .PHONY : nextest-vrf
254
+ nextest-vrf : # # Run VRF tests with cargo-nextest, requires nightly Rust
255
+ @cd vrf && cargo +nightly nextest run --release
256
+
237
257
# Docker build targets
238
258
239
259
.PHONY : docker-build-all
You can’t perform that action at this time.
0 commit comments