Skip to content

Commit

Permalink
Disable Wayback machine tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mre committed Oct 12, 2024
1 parent 4f3efb5 commit 060e0cd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lychee-bin/src/archive/wayback/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ mod tests {
// The Wayback Machine does not always return a suggestion.
// We can consider mocking the endpoint in the future.
#[tokio::test]
#[ignore]
#[ignore = "Wayback Machine currently has certificate issues"]
async fn wayback_suggestion() -> Result<(), Box<dyn StdError>> {
let target_url = "https://example.com".parse::<Url>()?;

Expand Down Expand Up @@ -118,6 +118,7 @@ mod tests {
}

#[tokio::test]
#[ignore = "Wayback Machine currently has certificate issues"]
async fn wayback_suggestion_unknown_url() -> Result<(), Error> {
let url = &"https://github.com/mre/idiomatic-rust-doesnt-exist-man"
.try_into()
Expand Down

0 comments on commit 060e0cd

Please sign in to comment.