Disable check_site test for now

This commit is contained in:
Vincent Prouillet 2020-01-07 21:23:49 +01:00
parent 2966adbe4e
commit 44a07a4a55

View file

@ -684,16 +684,17 @@ fn can_ignore_markdown_content() {
assert!(!file_exists!(public, "posts/ignored/index.html")); assert!(!file_exists!(public, "posts/ignored/index.html"));
} }
#[test] // Can timeout CI https://github.com/getzola/zola/issues/908
fn check_site() { //#[test]
let (mut site, _tmp_dir, _public) = build_site("test_site"); //fn check_site() {
// let (mut site, _tmp_dir, _public) = build_site("test_site");
assert_eq!( //
site.config.link_checker.skip_anchor_prefixes, // assert_eq!(
vec!["https://github.com/rust-lang/rust/blob/"] // site.config.link_checker.skip_anchor_prefixes,
); // vec!["https://github.com/rust-lang/rust/blob/"]
assert_eq!(site.config.link_checker.skip_prefixes, vec!["http://[2001:db8::]/"]); // );
// assert_eq!(site.config.link_checker.skip_prefixes, vec!["http://[2001:db8::]/"]);
site.config.enable_check_mode(); //
site.load().expect("link check test_site"); // site.config.enable_check_mode();
} // site.load().expect("link check test_site");
//}