Skip to content

Commit 62ea28f

Browse files
authored
Merge pull request #14 from BrowserStackCE/grpcio
grpcio only binary
2 parents b66a32f + b6b4c43 commit 62ea28f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

mac/env-setup-run.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,9 @@ setup_web_python() {
200200

201201
clone_repository "$REPO" "$TARGET_DIR" ""
202202

203-
detect_setup_python_env
203+
# detect_setup_python_env
204204

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

@@ -260,10 +260,10 @@ setup_app_python() {
260260

261261
clone_repository "$REPO" "$TARGET_DIR"
262262

263-
detect_setup_python_env
263+
# detect_setup_python_env
264264

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

269269
local app_url=$BROWSERSTACK_APP

0 commit comments

Comments
 (0)