On Thu, Oct 20, 2022 at 2:40 PM Bartosz Golaszewski <brgl@xxxxxxxx> wrote: > > In C tests I just skip them using g_test_skip() which generates an > info message. I'm surprised to learn one can't skip tests in rust, it > sounds like a very basic functionality. I'd say let's drop them for > now then. A `#[test]` can be unconditionally ignored with `#[ignore]`, but they can still be run if requested via `--ignored` or `--include-ignored`. They are still always built, though, which sometimes is not what one wants. But if possible, it is good to keep them that way, since that guarantees they remain buildable. Cheers, Miguel