From d390f7cb3b10ba12ec93fce12e588efd72e7e314 Mon Sep 17 00:00:00 2001 From: Thorsten Blum Date: Sun, 27 Oct 2024 14:27:39 +0100 Subject: [PATCH] Add RUST_BACKTRACE=1 --- .github/workflows/test.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 4730425..8a492f5 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -16,8 +16,8 @@ jobs: stream_max_length: 1000000 - name: Run tests with separate features run: | - cargo test --features tokio - cargo test --features tokio-stream - cargo test --features async-std + RUST_BACKTRACE=1 cargo test --features tokio + RUST_BACKTRACE=1 cargo test --features tokio-stream + RUST_BACKTRACE=1 cargo test --features async-std - name: Run tests with all features - run: cargo test --all-features + run: RUST_BACKTRACE=1 cargo test --all-features