diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55e3372..3ab38f0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -54,7 +54,7 @@ jobs: run: pdm install -G:all - name: Test with coverage - run: make tests-ci + run: make test - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v4 diff --git a/Makefile b/Makefile index f634fa1..b4a9561 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,5 @@ test: - pdm run hatch test --cover --all - -tests-ci: + # pdm run hatch test --cover --all pdm run pytest tests --cov=src --cov-report term-missing --cov-report=xml --asyncio-mode=auto lint: