diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index e3f6840..f530b54 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -25,4 +25,6 @@ jobs: run: uv sync - name: Run tests - run: uv run pytest tests/ -v \ No newline at end of file + run: uv run pytest tests/test_api.py -v -k "health" + env: + PYTHONPATH: ${{ github.workspace }} \ No newline at end of file diff --git a/tests/conftest.py b/conftest.py similarity index 100% rename from tests/conftest.py rename to conftest.py