Skip to content

Commit 15773c8

Browse files
committed
bug fix - Devnull
1 parent aecf144 commit 15773c8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • mflix/server/python-fastapi/tests/integration

mflix/server/python-fastapi/tests/integration/conftest.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@ def server():
5656
# Start the server process
5757
process = subprocess.Popen(
5858
[sys.executable, "-m", "uvicorn", "main:app", "--host", "127.0.0.1", "--port", str(test_port)],
59-
stdout=subprocess.PIPE,
60-
stderr=subprocess.PIPE,
59+
stdout=subprocess.DEVNULL,
60+
stderr=subprocess.DEVNULL,
6161
cwd=server_python_dir
6262
)
6363

0 commit comments

Comments
 (0)