Skip to content

Commit 4faef58

Browse files
fix(e2e): restore playwright install in install-python
Playwright here backs Python embeddings (prompt_client), not frontend e2e. The Cypress migration replaced frontend e2e but this line was removed by mistake, breaking `make install-python`. Restore it per reviewer feedback on #774. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent dfe2345 commit 4faef58

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,8 +75,9 @@ install-deps: install-deps-python install-deps-typescript
7575
install-python:
7676
virtualenv -p python3 venv
7777
. ./venv/bin/activate &&\
78-
make install-deps-python
79-
78+
make install-deps-python &&\
79+
playwright install
80+
8081
install-typescript:
8182
yarn add webpack && cd application/frontend && yarn build
8283

0 commit comments

Comments
 (0)