Skip to content

Commit ef283ad

Browse files
committed
refactor: remove deps on codecov in docker and move to ci
1 parent 6d7cb3b commit ef283ad

3 files changed

Lines changed: 2 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
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

Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ ENV UV_COMPILE_BYTECODE=1
2525
RUN uv venv .venv
2626
ENV VIRTUAL_ENV=/app/.venv
2727
ENV PATH="/app/.venv/bin:$PATH"
28-
RUN pip install --no-cache-dir codecov-cli
2928
ENV PYTHONPATH=/app/
3029
ENV PYTHONUNBUFFERED=1
3130

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
UV := uv
22
CODECOV_CLI := codecovcli
33

4-
.PHONY: test build publish release coverage
4+
.PHONY: test build publish release
55

66

77
build:

0 commit comments

Comments
 (0)