forked from makeabilitylab/makeabilitylabwebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrequirements-dev.txt
More file actions
17 lines (17 loc) · 777 Bytes
/
Copy pathrequirements-dev.txt
File metadata and controls
17 lines (17 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Development / test-only dependencies.
#
# These are NOT installed into the production (or test/prod server) image — the
# Dockerfile installs requirements.txt only — which keeps Playwright and its
# ~120 MB browser out of the deployed stack. This file is used by the Playwright
# end-to-end CI job (.github/workflows/test.yml) and for running the browser
# tests locally:
#
# pip install -r requirements-dev.txt
# python -m playwright install --with-deps chromium
# python manage.py test website.tests.test_member_e2e \
# --settings=makeabilitylab.settings_test
#
# Pin Playwright so the pip package and the installed browser build stay in
# lockstep (a mismatch makes `playwright install` download the wrong revision).
-r requirements.txt
playwright==1.60.0