File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545 docker run --rm \
4646 -v "${{ github.workspace }}/coverage_output":/app/coverage_output \
4747 sqlnotify:ci \
48- bash -lc "pytest --cov=sqlnotify --cov-report=xml:/app/coverage_output/coverage.xml --cov-report=lcov:/app/coverage_output/lcov.info"
48+ bash -lc "uv run pytest --cov=sqlnotify --cov-report=xml:/app/coverage_output/coverage.xml --cov-report=lcov:/app/coverage_output/lcov.info"
4949
5050 - name : Upload coverage to Codecov
5151 uses : codecov/codecov-action@v4
Original file line number Diff line number Diff line change @@ -25,7 +25,6 @@ ENV UV_COMPILE_BYTECODE=1
2525RUN uv venv .venv
2626ENV VIRTUAL_ENV=/app/.venv
2727ENV PATH="/app/.venv/bin:$PATH"
28- RUN pip install --no-cache-dir codecov-cli
2928ENV PYTHONPATH=/app/
3029ENV PYTHONUNBUFFERED=1
3130
Original file line number Diff line number Diff line change 11UV := uv
22CODECOV_CLI := codecovcli
33
4- .PHONY : test build publish release coverage
4+ .PHONY : test build publish release
55
66
77build :
You can’t perform that action at this time.
0 commit comments