fix tests
Some checks failed
🏗️ Build and Test JellyTau / Build APK and Run Tests (push) Failing after 15s
Traceability Validation / Check Requirement Traces (push) Failing after 1s

This commit is contained in:
Duncan Tourolle 2026-02-14 16:49:14 +01:00
parent 59270e8a4f
commit 179c51a6fe
2 changed files with 4 additions and 2 deletions

View File

@ -50,7 +50,9 @@ jobs:
bun install
- name: Run frontend tests
run: bun test
run: |
bunx svelte-kit sync
bun test
- name: Run Rust tests
run: |

View File

@ -12,7 +12,7 @@ services:
- .:/app
environment:
- RUST_BACKTRACE=1
command: bash -c "bunx svelte-kit sync && bun test && cd src-tauri && cargo test && cd .. && echo 'All tests passed!'"
command: bash -c "bun test && cd src-tauri && cargo test && cd .. && echo 'All tests passed!'"
# Android build service - builds APK after tests pass
android-build: