Skip to content

Commit 1b1b617

Browse files
committed
fix: local http server port conflict on mac
(cherry picked from commit ff2d0a2)
1 parent b8a87e3 commit 1b1b617

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

atests/http_server/run.cmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
22
set FLASK_APP=core.py
3-
python -m flask run
3+
python -m flask run --port 5010

atests/http_server/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/usr/bin/env bash
22
export FLASK_APP=core.py
3-
python -m flask run
3+
python -m flask run --port 5010

atests/res_setup.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Library RequestsLibrary
55

66
*** Variables ***
77
${GLOBAL_SESSION} global_session
8-
${HTTP_LOCAL_SERVER} http://localhost:5000
8+
${HTTP_LOCAL_SERVER} http://localhost:5010
99

1010

1111
*** Keywords ***

0 commit comments

Comments
 (0)