We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b5c337 commit 050b8a3Copy full SHA for 050b8a3
src/docbuilder/rustwide_builder.rs
@@ -87,6 +87,9 @@ impl RustwideBuilder {
87
if let Some(custom_image) = &config.local_docker_image {
88
builder = builder.sandbox_image(SandboxImage::local(&custom_image)?);
89
}
90
+ if cfg!(test) {
91
+ builder = builder.fast_init(true);
92
+ }
93
94
let workspace = builder.init()?;
95
workspace.purge_all_build_dirs()?;
0 commit comments