Skip to content

Commit d3275c8

Browse files
Change pip install to uv
1 parent 5a0d62c commit d3275c8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/consumer_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# & make the tests red in the end. Without this we only would check the exit code of the 'tee' command.
4242
runCmd: |
4343
set -euxo pipefail
44-
pip install -r src/requirements.txt
44+
uv venv && uv pip install -r src/requirements.txt
4545
4646
mkdir -p reports
4747
@@ -50,7 +50,7 @@ jobs:
5050
export PYTHONUNBUFFERED="1"
5151
export CONSUMER="${{ matrix.consumer }}"
5252
53-
pytest -s -v src/tests/ \
53+
uv run pytest -s -v src/tests/ \
5454
--repo="$CONSUMER" \
5555
--junitxml="reports/${{ matrix.consumer }}.xml" \
5656
| tee "reports/${{ matrix.consumer }}.log"

0 commit comments

Comments
 (0)