diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 27a3f4c..3f5569d 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -27,13 +27,11 @@ jobs: - name: Verify build run: | - cd api - python -c "from main import app" + python -c "from api.main import app" - name: Run tests run: | - cd api - pytest tests/ + pytest -q test-frontend: needs: test-backend