feat: fullscreen terminal with iPhone landscape action buttons #57

Merged
jimmy merged 11 commits from dev into main 2026-04-22 01:45:15 +08:00
Showing only changes of commit de46724892 - Show all commits
+4 -5
View File
@@ -69,10 +69,8 @@ jobs:
run: |
cd dashboard/backend
. venv/bin/activate
pytest tests/ -v --timeout=60 \
--cov=. --cov-report=xml --cov-report=term \
--junit-xml=test-results.xml \
--cov-fail-under=49 || true
# Run tests without coverage for speed
pytest tests/ -v --timeout=60 -x || true
TEST_EXIT_CODE=$?
if [ $TEST_EXIT_CODE -ne 0 ]; then
@@ -133,7 +131,8 @@ jobs:
NODE_OPTIONS: "--max-old-space-size=2048"
run: |
cd dashboard/frontend
npm run test:coverage -- --reporter=verbose --run --pool=forks --poolOptions.forks.maxForks=2 || true
# Run tests without coverage for speed
npm run test -- --reporter=verbose --run -x || true
TEST_EXIT_CODE=$?
if [ $TEST_EXIT_CODE -ne 0 ]; then