Skip to content

Commit 29699dd

Browse files
committed
update README; enhance installation instructions and add test execution guidelines
1 parent d5aedfe commit 29699dd

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

README.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,16 @@ Give an frontier agent a reliable tool to visually verify its code changes in a
2626

2727
```bash
2828
pip install -e .
29-
pip install -e ".[dev]" # includes pytest, ruff
29+
pip install -e ".[dev]" # includes pytest, pytest-mock, ruff
3030
playwright install chromium # required for WebAgent
3131
```
32+
### Run tests
33+
34+
```bash
35+
pytest # run all tests
36+
pytest -v # verbose output
37+
pytest -k test_name # run a single test by name
38+
```
3239

3340
### Configure
3441

0 commit comments

Comments
 (0)