Skip to content

Commit

Permalink
Update FIXME note about number of files
Browse files Browse the repository at this point in the history
  • Loading branch information
seqre committed Jan 29, 2024
1 parent ef00c0a commit 695c578
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/tools/tidy/src/ui_tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@ use std::ffi::OsStr;
use std::fs;
use std::path::{Path, PathBuf};

// FIXME: GitHub's UI truncates file lists that exceed 1000 entries, so these
// should all be 1000 or lower. Limits significantly smaller than 1000 are also
// desirable, because large numbers of files are unwieldy in general. See issue
// #73494.
const ENTRY_LIMIT: usize = 900;
// FIXME: The following limits should be reduced eventually.
const ISSUES_ENTRY_LIMIT: usize = 1811;
const ROOT_ENTRY_LIMIT: usize = 870;

Expand Down

0 comments on commit 695c578

Please sign in to comment.