diff options
| author | Valentin Popov <valentin@popov.link> | 2026-06-22 14:55:37 +0300 |
|---|---|---|
| committer | Valentin Popov <valentin@popov.link> | 2026-06-22 14:55:37 +0300 |
| commit | 8e5e46b7b381608387fcd2fdd98a474a50f3d33a (patch) | |
| tree | 610628bc8c125462ca472cca6859bf958adc91c0 /crates/fparkan-corpus/src/lib.rs | |
| parent | d0bdbaa1ed76dfbf3211bb43eee48c49cc4fd448 (diff) | |
| download | fparkan-8e5e46b7b381608387fcd2fdd98a474a50f3d33a.tar.xz fparkan-8e5e46b7b381608387fcd2fdd98a474a50f3d33a.zip | |
fix: make ci locked and isolate licensed tests
Diffstat (limited to 'crates/fparkan-corpus/src/lib.rs')
| -rw-r--r-- | crates/fparkan-corpus/src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
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"); } |
