feat(tests): split up the lib tests, versus the unit tests so that I don't lose my mind again

This commit is contained in:
perf3ct 2025-08-02 22:51:53 +00:00
parent cb3b3f05b8
commit 346ec6f18a
No known key found for this signature in database
GPG Key ID: 569C4EEC436F5232
1 changed files with 6 additions and 1 deletions

View File

@ -63,9 +63,14 @@ jobs:
${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.lock') }}- ${{ runner.os }}-cargo-target-${{ hashFiles('**/Cargo.lock') }}-
${{ runner.os }}-cargo-target- ${{ runner.os }}-cargo-target-
- name: Run Rust unit tests - name: Run Rust unit tests - lib only
run: | run: |
cargo test --lib --no-fail-fast 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 cargo test --tests unit_tests --no-fail-fast
env: env:
RUST_BACKTRACE: 1 RUST_BACKTRACE: 1