Jelajahi Sumber

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 4 bulan lalu
induk
melakukan
11482dd4d3
1 mengubah file dengan 2 tambahan dan 2 penghapusan
  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