diff --git a/.github/workflows/test_coverage.yml b/.github/workflows/test_coverage.yml index b50aebf..3743feb 100644 --- a/.github/workflows/test_coverage.yml +++ b/.github/workflows/test_coverage.yml @@ -18,10 +18,11 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install pytest pytest-cov + uv sync + uv pip install pytest pytest-cov - name: Run tests with coverage - run: pytest --cov=pdf2csv --cov-report=xml + run: uv run pytest --cov=pdf2csv --cov-report=xml - name: Upload coverage to Codecov uses: codecov/codecov-action@v2