Replace pip-tools usage
Some checks failed
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/tests Pipeline failed

This commit is contained in:
Sonny Bakker 2024-12-28 14:43:00 +01:00
parent 816bc54213
commit a46392f0aa
9 changed files with 406 additions and 304 deletions

View file

@ -3,13 +3,11 @@ when:
steps:
- name: development build
image: python:3.11
image: ghcr.io/astral-sh/uv:python3.11-bookworm
commands:
- make install-development
- transip-listen --help
- uv run -- transip-listen --help
- name: production build
image: python:3.11
image: ghcr.io/astral-sh/uv:python3.11-bookworm
commands:
- make install-production
- transip-listen --help
- uv run -- transip-listen --help

View file

@ -3,8 +3,7 @@ when:
steps:
- name: python tests
image: python:3.11
image: ghcr.io/astral-sh/uv:python3.11-bookworm
commands:
- pip install --requirement requirements/ci.txt
- coverage run --module unittest
- coverage report
- uv run -- coverage run --module unittest
- uv run -- coverage report