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:
parent
cb3b3f05b8
commit
346ec6f18a
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue