diff --git a/mac/env-setup-run.sh b/mac/env-setup-run.sh index f63679b..5cb1327 100644 --- a/mac/env-setup-run.sh +++ b/mac/env-setup-run.sh @@ -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" @@ -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