Files
linkding/scripts/test-e2e.sh
Sascha Ißbrücker b90ae1b202 Switch to uv (#1172)
2025-08-23 07:37:25 +02:00

13 lines
322 B
Bash
Executable File

#!/usr/bin/env bash
# Make sure Chromium is installed
uv run playwright install chromium
# Test server loads assets from static folder, so make sure files there are up-to-date
rm -rf static
npm run build
uv run manage.py collectstatic
# Run E2E tests
uv run manage.py test bookmarks.tests_e2e --pattern="e2e_test_*.py"