Avoid snapshot testing in CI with --all-features

This commit is contained in:
Héctor Ramón Jiménez 2025-08-30 18:42:11 +02:00
parent 665c89a062
commit e324b18dff
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
2 changed files with 1 additions and 1 deletions

View file

@ -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

View file

@ -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)));