We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd22f7c commit 781e879Copy full SHA for 781e879
.github/workflows/e2e-tests.yml
@@ -30,6 +30,27 @@ jobs:
30
cd e2e
31
bunx playwright install --with-deps
32
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
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
54
- name: Run Playwright tests
55
run: |
56
0 commit comments