Compare commits

..

2 commits

Author SHA1 Message Date
bab6fea2d1
Merge 1a02d876a9 into d868699bab 2025-03-26 16:18:29 +00:00
Alexis Métaireau
1a02d876a9
Use uv rather than poetry wherever possible 2025-03-26 17:15:44 +01:00

View file

@ -479,7 +479,9 @@ jobs:
# protocol specified". However, we have verified with strace(1)
# that the command in the Podman container can read the Xauthority
# file successfully.
xvfb-run -s '-ac' ./dev_scripts/env.py --distro ${{ matrix.distro }} --version ${{ matrix.version }} run --dev \ bash -c 'cd dangerzone; uv run --group test make test'
xvfb-run -s '-ac' ./dev_scripts/env.py --distro ${{ matrix.distro }} --version ${{ matrix.version }} run --dev \
<<<<<<< HEAD
bash -c 'cd dangerzone; poetry run make test'
- name: Upload PDF diffs
uses: actions/upload-artifact@v4
@ -488,3 +490,6 @@ jobs:
path: tests/test_docs/diffs/*.jpeg
# Always run this step to publish test results, even on failures
if: ${{ always() }}
=======
bash -c 'cd dangerzone; uv run --group test make test'
>>>>>>> dfca32c (Use uv rather than poetry wherever possible)