test: skip mod.rs files when checking for annotations

pull/970/head^2 4.7.0
mokou 2 years ago
parent cf9f382873
commit 0b7f3fe37a

@ -125,6 +125,9 @@ fn get_hint_for_single_test() {
fn all_exercises_require_confirmation() {
for exercise in glob("exercises/**/*.rs").unwrap() {
let path = exercise.unwrap();
if path.file_name().unwrap() == "mod.rs" {
continue
}
let source = {
let mut file = File::open(&path).unwrap();
let mut s = String::new();

Loading…
Cancel
Save