diff --git a/test/Cargo.toml b/test/Cargo.toml index 7c05dae4b..095c7f544 100644 --- a/test/Cargo.toml +++ b/test/Cargo.toml @@ -19,7 +19,7 @@ dirs = "5.0.1" env_logger = "0.10.1" limbo_core = { path = "../core" } rustyline = "12.0.0" -rusqlite = "0.29.0" +rusqlite = { version = "0.29", features = ["bundled"] } [dev-dependencies] rstest = "0.18.2" diff --git a/test/src/lib.rs b/test/src/lib.rs index c36f6ce7c..80c72f677 100644 --- a/test/src/lib.rs +++ b/test/src/lib.rs @@ -37,6 +37,7 @@ mod tests { use super::*; use limbo_core::{RowResult, Value}; + #[ignore] #[test] fn test_sequential_write() -> anyhow::Result<()> { let _ = env_logger::try_init(); @@ -98,6 +99,7 @@ mod tests { Ok(()) } + #[ignore] #[test] fn test_simple_overflow_page() -> anyhow::Result<()> { let _ = env_logger::try_init(); @@ -164,6 +166,7 @@ mod tests { Ok(()) } + #[ignore] #[test] fn test_sequential_overflow_page() -> anyhow::Result<()> { let _ = env_logger::try_init();