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 a133073 commit 46c2b76Copy full SHA for 46c2b76
.cargo/mutants.toml
@@ -1,7 +1,11 @@
1
# Controls tests with `cargo mutants`
2
3
# Skip some relatively unimportant functions and traits for now.
4
-exclude_re = ["<impl Display"]
+exclude_re = [
5
+ "<impl Display",
6
+ # spins forever returning empty vecs
7
+ "replace <impl Iterator for IterStitchedIndexHunks>::next -> Option<Self::Item> with Some\\(Default::default\\(\\)\\)",
8
+]
9
10
# Include only files that are currently well-tested.
11
examine_globs = [
@@ -14,6 +18,7 @@ examine_globs = [
14
18
"src/counters.rs",
15
19
"src/jsonio.rs",
16
20
"src/restore.rs",
21
+ "src/stitch.rs",
17
22
"src/transport.rs",
23
"src/transport/local.rs",
24
]
0 commit comments