From 346ec6f18a875586dbfe61650acd52de14611964 Mon Sep 17 00:00:00 2001 From: perf3ct Date: Sat, 2 Aug 2025 22:51:53 +0000 Subject: [PATCH] feat(tests): split up the lib tests, versus the unit tests so that I don't lose my mind again --- .github/workflows/test-unit.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test-unit.yml b/.github/workflows/test-unit.yml index 1f7d7f2..2529d46 100644 --- a/.github/workflows/test-unit.yml +++ b/.github/workflows/test-unit.yml @@ -63,9 +63,14 @@ jobs: ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.lock') }}- ${{ runner.os }}-cargo-target- - - name: Run Rust unit tests + - name: Run Rust unit tests - lib only run: | cargo test --lib --no-fail-fast + env: + RUST_BACKTRACE: 1 + + - name: Run Rust unit tests - tests only + run: | cargo test --tests unit_tests --no-fail-fast env: RUST_BACKTRACE: 1