From 8e5e46b7b381608387fcd2fdd98a474a50f3d33a Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Mon, 22 Jun 2026 15:55:37 +0400 Subject: fix: make ci locked and isolate licensed tests --- crates/fparkan-corpus/src/lib.rs | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'crates/fparkan-corpus/src') diff --git a/crates/fparkan-corpus/src/lib.rs b/crates/fparkan-corpus/src/lib.rs index ba26c73..1504f01 100644 --- a/crates/fparkan-corpus/src/lib.rs +++ b/crates/fparkan-corpus/src/lib.rs @@ -442,6 +442,7 @@ mod tests { use std::time::{SystemTime, UNIX_EPOCH}; #[test] + #[ignore = "requires licensed corpus"] fn report_for_testdata_roots() { let root = Path::new(env!("CARGO_MANIFEST_DIR")) .join("../..") @@ -457,6 +458,7 @@ mod tests { } #[test] + #[ignore = "requires licensed corpus"] fn licensed_part1_manifest_profile_and_counts_match_baseline() { let root = testdata_root("IS"); let manifest = discover(&root, DiscoverOptions::default()).expect("part 1 manifest"); @@ -473,6 +475,7 @@ mod tests { } #[test] + #[ignore = "requires licensed corpus"] fn licensed_part2_manifest_profile_and_counts_match_baseline() { let root = testdata_root("IS2"); let manifest = discover(&root, DiscoverOptions::default()).expect("part 2 manifest"); @@ -489,6 +492,7 @@ mod tests { } #[test] + #[ignore = "requires licensed corpus"] fn licensed_part1_has_no_casefold_relative_path_collisions() { let root = testdata_root("IS"); let manifest = discover(&root, DiscoverOptions::default()).expect("part 1 manifest"); @@ -497,6 +501,7 @@ mod tests { } #[test] + #[ignore = "requires licensed corpus"] fn licensed_part2_has_no_casefold_relative_path_collisions() { let root = testdata_root("IS2"); let manifest = discover(&root, DiscoverOptions::default()).expect("part 2 manifest"); @@ -505,11 +510,13 @@ mod tests { } #[test] + #[ignore = "requires licensed corpus"] fn licensed_part1_paths_stay_under_root() { assert_discovered_paths_stay_under_root("IS"); } #[test] + #[ignore = "requires licensed corpus"] fn licensed_part2_paths_stay_under_root() { assert_discovered_paths_stay_under_root("IS2"); } -- cgit v1.2.3