From cc7d5dc57086f1fea72b33ec7f1dcd7c7a96fe26 Mon Sep 17 00:00:00 2001 From: thePR0M3TH3AN <53631862+PR0M3TH3AN@users.noreply.github.com> Date: Thu, 19 Jun 2025 18:41:36 -0400 Subject: [PATCH] Use local package install in e2e --- ci/test-e2e.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ci/test-e2e.sh b/ci/test-e2e.sh index 64cc32a..ca3bd7c 100755 --- a/ci/test-e2e.sh +++ b/ci/test-e2e.sh @@ -5,8 +5,8 @@ LOG_DIR="$(pwd)/ci-logs" mkdir -p "$LOG_DIR" exec >"$LOG_DIR/run.log" 2>&1 -# Run install script and time it -{ time ./install.sh; } 2>&1 +# Install VoxVera from the local repository and time it +{ time pip install -e .; } 2>&1 # Generate demo flyer voxvera init --template voxvera <