Skip to content

Commit

Permalink
chore(doc): ignore data repo in check_md_docs_are_tested
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarlin-zama committed Aug 5, 2024
1 parent 70f7af0 commit b03921f
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion tasks/src/check_tfhe_docs_are_tested.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ use std::collections::HashSet;
use std::io::{Error, ErrorKind};

// TODO use .gitignore or git to resolve ignored files
const DIR_TO_IGNORE: [&str; 2] = [".git", "target"];
const DIR_TO_IGNORE: [&str; 3] = [
".git",
"target",
// If the data repo has been cloned, we ignore its README
"tfhe/tfhe-backward-compat-data",
];

const FILES_TO_IGNORE: [&str; 4] = [
// This contains fragments of code that are unrelated to TFHE-rs
Expand Down

0 comments on commit b03921f

Please sign in to comment.