From 5b4e46f695993b4bd1777f854246029cf8013913 Mon Sep 17 00:00:00 2001 From: Steven Engler Date: Sun, 23 Jun 2024 01:19:48 -0400 Subject: [PATCH] Use `--color always` for tests in CI workflows --- .github/workflows/test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 53386da..ff9416a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -80,7 +80,7 @@ jobs: shell: su --shell /bin/bash user -- -eo pipefail {0} run: | . "$HOME/.cargo/env" - RUST_BACKTRACE=1 cargo test + RUST_BACKTRACE=1 cargo test --color always -- --color always macos: runs-on: macos-latest @@ -99,4 +99,4 @@ jobs: - name: Test shell: bash -eo pipefail {0} run: | - RUST_BACKTRACE=1 cargo test + RUST_BACKTRACE=1 cargo test --color always -- --color always