Просмотр исходного кода

Run all backend tests in CI (unit + integration)

Previously only ran tests/unit/, now runs tests/ to match
test_backend.sh workflow (513 tests instead of 239).

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
maziggy 7 месяцев назад
Родитель
Сommit
fa7296389b
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      .github/workflows/ci.yml

+ 2 - 2
.github/workflows/ci.yml

@@ -66,10 +66,10 @@ jobs:
           pip install -r requirements.txt
           pip install -r requirements.txt
           pip install pytest pytest-asyncio pytest-cov
           pip install pytest pytest-asyncio pytest-cov
 
 
-      - name: Run unit tests
+      - name: Run tests
         run: |
         run: |
           cd backend
           cd backend
-          python -m pytest tests/unit/ -v --tb=short -m "not slow"
+          python -m pytest tests/ -v --tb=short
 
 
   # ============================================================================
   # ============================================================================
   # Frontend Checks
   # Frontend Checks