From e324b18dff6b59d5ff286c0acbe4135e6e8831c7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Sat, 30 Aug 2025 18:42:11 +0200 Subject: [PATCH] Avoid snapshot testing in CI with `--all-features` --- .github/workflows/test.yml | 1 - examples/todos/src/main.rs | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d24f4503..e1280769 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,4 +26,3 @@ jobs: cargo test --verbose --workspace cargo test --verbose --workspace -- --ignored cargo test --verbose --workspace --all-features - cargo test --verbose --workspace --all-features -- --ignored diff --git a/examples/todos/src/main.rs b/examples/todos/src/main.rs index bd1d9379..ed767e70 100644 --- a/examples/todos/src/main.rs +++ b/examples/todos/src/main.rs @@ -595,6 +595,7 @@ mod tests { } #[test] + #[ignore] fn it_creates_a_new_task() -> Result<(), Error> { let (mut todos, _command) = Todos::new(); let _command = todos.update(Message::Loaded(Err(LoadError::File)));