From e250e710197091a5767d80e1c82cd782078f9310 Mon Sep 17 00:00:00 2001 From: Kevin Song Date: Wed, 14 Aug 2019 18:50:25 -0700 Subject: [PATCH] fix: Don't run tests for ruby outside of the integration tests (#155) --- tests/testsuite/ruby.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/testsuite/ruby.rs b/tests/testsuite/ruby.rs index f8a4356a..f1911f6b 100644 --- a/tests/testsuite/ruby.rs +++ b/tests/testsuite/ruby.rs @@ -20,6 +20,7 @@ fn folder_without_ruby_files() -> io::Result<()> { } #[test] +#[ignore] fn folder_with_gemfile() -> io::Result<()> { let dir = common::new_tempdir()?; File::create(dir.path().join("Gemfile"))?; @@ -36,6 +37,7 @@ fn folder_with_gemfile() -> io::Result<()> { } #[test] +#[ignore] fn folder_with_rb_file() -> io::Result<()> { let dir = common::new_tempdir()?; File::create(dir.path().join("any.rb"))?;