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.
2 parents c68579b + 799c39b commit 789e881Copy full SHA for 789e881
rust/extractor/src/qltest.rs
@@ -54,6 +54,7 @@ path = "main.rs"
54
fn set_sources(config: &mut Config) -> anyhow::Result<()> {
55
let path_iterator = glob("**/*.rs").context("globbing test sources")?;
56
config.inputs = path_iterator
57
+ .filter(|f| f.is_err() || !f.as_ref().unwrap().starts_with("target"))
58
.collect::<Result<Vec<_>, _>>()
59
.context("fetching test sources")?;
60
Ok(())
0 commit comments