Skip to content

Commit 56f1f38

Browse files
committed
chore: run tests directly without turbo
1 parent e787c7f commit 56f1f38

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/_ci-e2e-tauri.reusable.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -210,12 +210,13 @@ jobs:
210210
shell: bash
211211
run: pnpm exec turbo run build --filter=@wdio/tauri-service
212212

213-
# Run the Tauri E2E tests using Turbo with the generated test commands
214-
# Use --no-deps to skip rebuilding Tauri apps (we downloaded pre-built binaries)
213+
# Run the Tauri E2E tests directly with pnpm (bypasses Turbo's dependsOn)
214+
# This skips rebuilding Tauri apps since we downloaded pre-built binaries
215215
# tauri-driver is started per worker and has access to xvfb via WDIO's autoXvfb
216216
- name: 🧪 Execute Tauri E2E Tests
217217
shell: bash
218-
run: pnpm exec turbo run ${{ steps.gen-test.outputs.result }} --filter=@repo/e2e --no-deps --log-order=stream
218+
working-directory: e2e
219+
run: pnpm run ${{ steps.gen-test.outputs.result }}
219220

220221
# Show comprehensive debug information on failure
221222
- name: 🐛 Debug Information on Failure

0 commit comments

Comments
 (0)