feat: add browser profile XDG support and documentation (#777)

This commit is contained in:
Jens
2026-01-23 22:45:22 +01:00
committed by GitHub
parent dc0d9404bf
commit eda1b4d0ec
15 changed files with 841 additions and 687 deletions

View File

@@ -172,10 +172,11 @@ jobs:
set -eux
case "${{ matrix.os }}" in
ubuntu-*)
sudo apt-get install --no-install-recommends -y xvfb
xvfb-run pdm run itest:cov -vv
;;
ubuntu-*)
sudo apt-get install --no-install-recommends -y xvfb
# Run tests INSIDE xvfb context
xvfb-run bash -c 'pdm run itest:cov -vv'
;;
*) pdm run itest:cov -vv
;;
esac