From bb21f049e9bb261cc3015afb8a3be71e24afc7ca Mon Sep 17 00:00:00 2001 From: correabuscar Date: Fri, 7 Jun 2024 13:01:21 +0200 Subject: [PATCH] --nocapture isn't needed for github CI workflow because it will auto-show this output if it ever fails, if it doesn't fail, we don't need to see it, it's spammy --- .github/workflows/rust.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 22326f4f..01979360 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -24,4 +24,4 @@ jobs: - name: Run tests run: > cargo test --features "toml markdown ansi termion-backend crossterm-backend" --no-default-features --verbose && - cargo test --example select_test -- --nocapture + cargo test --example select_test