From c2da1c04236710b636eec755543b31b08faa2045 Mon Sep 17 00:00:00 2001 From: Mohammed Alkindi Date: Tue, 15 Sep 2026 16:31:14 +0300 Subject: [PATCH] docs(contributing): install browsers before running tests The documented sequence went from building the wheel straight to pytest --browser chromium, but the browsers are never installed. CI does it explicitly at ci.yml lines 100, 147 and 178; the contributor path did not. --- CONTRIBUTING.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 41d883dbd..c74b816a8 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -31,6 +31,12 @@ pip install -e . python -m build --wheel ``` +Install the browsers to test against: + +```sh +playwright install chromium +``` + Run tests: ```sh