Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions mac/env-setup-run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@ setup_web_python() {

clone_repository "$REPO" "$TARGET_DIR" ""

detect_setup_python_env
# detect_setup_python_env

pip3 install -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1
pip3 install --only-binary grpcio -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1
pip3 uninstall -y pytest-html pytest-rerunfailures >> "$NOW_RUN_LOG_FILE" 2>&1
log_success "Dependencies installed"

Expand Down Expand Up @@ -260,10 +260,10 @@ setup_app_python() {

clone_repository "$REPO" "$TARGET_DIR"

detect_setup_python_env
# detect_setup_python_env

# Install dependencies
pip3 install -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1
pip install --only-binary grpcio -r requirements.txt >> "$NOW_RUN_LOG_FILE" 2>&1
log_success "Dependencies installed"

local app_url=$BROWSERSTACK_APP
Expand Down