Skip to content

Commit 781e879

Browse files
committed
Fix?
1 parent fd22f7c commit 781e879

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/e2e-tests.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,27 @@ jobs:
3030
cd e2e
3131
bunx playwright install --with-deps
3232
33+
- name: Setup Python
34+
uses: actions/setup-python@v5
35+
with:
36+
python-version: "3.12"
37+
38+
- name: Install Poetry
39+
uses: snok/install-poetry@v1
40+
with:
41+
version: latest
42+
virtualenvs-create: true
43+
virtualenvs-in-project: true
44+
45+
- name: Install Python dependencies
46+
run: poetry install --extras debug-server
47+
48+
- name: Start Strawberry server
49+
run: |
50+
cd e2e
51+
poetry run strawberry server app:schema --port 8000 &
52+
sleep 5 # Wait for server to start
53+
3354
- name: Run Playwright tests
3455
run: |
3556
cd e2e

0 commit comments

Comments
 (0)