We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b712538 commit 7a883dfCopy full SHA for 7a883df
proptest/src/test_runner/config.rs
@@ -22,8 +22,6 @@ use std::str::FromStr;
22
use crate::test_runner::result_cache::{noop_result_cache, ResultCache};
23
use crate::test_runner::rng::RngAlgorithm;
24
use crate::test_runner::FailurePersistence;
25
-#[cfg(feature = "std")]
26
-use crate::test_runner::FileFailurePersistence;
27
28
#[cfg(feature = "std")]
29
const CASES: &str = "PROPTEST_CASES";
@@ -80,8 +78,6 @@ pub fn contextualize_config(mut result: Config) -> Config {
80
78
}
81
79
82
83
- result.failure_persistence =
84
- Some(Box::new(FileFailurePersistence::default()));
85
for (var, value) in
86
env::vars_os().filter_map(|(k, v)| k.into_string().ok().map(|k| (k, v)))
87
{
0 commit comments