We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a0d62c commit d3275c8Copy full SHA for d3275c8
1 file changed
.github/workflows/consumer_test.yml
@@ -41,7 +41,7 @@ jobs:
41
# & make the tests red in the end. Without this we only would check the exit code of the 'tee' command.
42
runCmd: |
43
set -euxo pipefail
44
- pip install -r src/requirements.txt
+ uv venv && uv pip install -r src/requirements.txt
45
46
mkdir -p reports
47
@@ -50,7 +50,7 @@ jobs:
50
export PYTHONUNBUFFERED="1"
51
export CONSUMER="${{ matrix.consumer }}"
52
53
- pytest -s -v src/tests/ \
+ uv run pytest -s -v src/tests/ \
54
--repo="$CONSUMER" \
55
--junitxml="reports/${{ matrix.consumer }}.xml" \
56
| tee "reports/${{ matrix.consumer }}.log"
0 commit comments