OpenHands/tests/integration/start_http_server.py
Boxuan Li 78241d9d43
Add tests for browser agent (#2031)
Co-authored-by: Graham Neubig <neubig@gmail.com>
2024-05-24 09:59:40 +00:00

11 lines
278 B
Python

import os
from http.server import HTTPServer, SimpleHTTPRequestHandler
web_dir = os.path.join(os.path.dirname(__file__), 'static')
os.chdir(web_dir)
handler = SimpleHTTPRequestHandler
# Start the server
server = HTTPServer(('localhost', 8000), handler)
server.serve_forever()