Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 1s
15 lines
261 B
Python
15 lines
261 B
Python
"""Common support items for rekease teesting."""
|
|
|
|
from socket import socket
|
|
|
|
ADDR = "127.56.0.1"
|
|
|
|
|
|
def get_port():
|
|
"""Retrieve an unused port."""
|
|
sock = socket()
|
|
sock.bind((ADDR, 0))
|
|
port = sock.getsockname()[1]
|
|
sock.close()
|
|
return port
|