Skip to content

Commit

Permalink
fix: local http server port conflict on mac
Browse files Browse the repository at this point in the history
  • Loading branch information
lucagiove committed Nov 14, 2023
1 parent e4291b7 commit ff2d0a2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion atests/http_server/run.cmd
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
set FLASK_APP=core.py
python -m flask run
python -m flask run --port 5010
2 changes: 1 addition & 1 deletion atests/http_server/run.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/usr/bin/env bash
export FLASK_APP=core.py
python -m flask run
python -m flask run --port 5010
2 changes: 1 addition & 1 deletion atests/res_setup.robot
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Library RequestsLibrary

*** Variables ***
${GLOBAL_SESSION} global_session
${HTTP_LOCAL_SERVER} http://localhost:5000
${HTTP_LOCAL_SERVER} http://localhost:5010


*** Keywords ***
Expand Down

0 comments on commit ff2d0a2

Please sign in to comment.