From ac7a4ae517fa705ca1d2edb7262baacc6b6c9c6b Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 4 Aug 2020 14:31:38 +1000 Subject: [PATCH] fix: Speed up the block round trip proptest Reduce the number of cases run by the block round trip proptest, to speed up the Zebra tests. --- zebra-chain/src/block/tests.rs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/zebra-chain/src/block/tests.rs b/zebra-chain/src/block/tests.rs index edd45bda0..eb6fd9314 100644 --- a/zebra-chain/src/block/tests.rs +++ b/zebra-chain/src/block/tests.rs @@ -13,6 +13,7 @@ use chrono::{DateTime, Duration, LocalResult, TimeZone, Utc}; use proptest::{ arbitrary::{any, Arbitrary}, prelude::*, + test_runner::Config, }; use std::io::{Cursor, ErrorKind, Write}; @@ -210,6 +211,11 @@ proptest! { prop_assert_eq![header, other_header]; } +} + +proptest! { + // The block roundtrip test can be really slow + #![proptest_config(Config::with_cases(16))] #[test] fn block_roundtrip(block in any::()) {