From 47db741e0882ad4f640a609cc2f349f2069946d8 Mon Sep 17 00:00:00 2001 From: Luni-4 Date: Wed, 7 Dec 2022 11:23:21 +0100 Subject: [PATCH] Ignore integration tests --- tests/test.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/test.rs b/tests/test.rs index b3c8645a7..cff2feb20 100644 --- a/tests/test.rs +++ b/tests/test.rs @@ -203,16 +203,19 @@ fn compare_rca_output_with_files(repo_name: &str, include: &[&str]) { } #[test] +#[ignore] fn test_deepspeech() { compare_rca_output_with_files("DeepSpeech", &["*.cc", "*.cpp", "*.h", "*.hh"]); } #[test] +#[ignore] fn test_pdfjs() { compare_rca_output_with_files("pdf.js", &["*.js"]); } #[test] +#[ignore] fn test_rust_library() { compare_rca_output_with_files("rust", &["*/library/*.rs"]); }