From c3a1e1e2527b192262b3784527f73a01c4151834 Mon Sep 17 00:00:00 2001 From: ramvignesh-b Date: Wed, 22 Apr 2026 17:36:35 +0530 Subject: [PATCH] chore: no more distrobox for local e2e --- scripts/run-e2e.sh | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/scripts/run-e2e.sh b/scripts/run-e2e.sh index 5cfc820..45850c6 100755 --- a/scripts/run-e2e.sh +++ b/scripts/run-e2e.sh @@ -59,9 +59,4 @@ mkdir -p ./tmp/logs (cd backend && uv run manage.py serve) > ./tmp/logs/backend.log 2>&1 & BACKEND_PID=$! -if [ "$CI" = "true" ]; then - cd frontend && bun run test:e2e "$@" -else - # Because playwright decided not to support Fedora :) - cd frontend && distrobox-enter --name ubuntu-24.04 -- bun run test:e2e "$@" -fi +cd frontend && bun run test:e2e "$@"