Skip to content

Commit 80379b4

Browse files
committed
dbg
1 parent ff6d808 commit 80379b4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jupyter_releaser/util.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,9 @@ def ensure_mock_github():
729729
run(f"'{python}' -m pip install fastapi uvicorn")
730730

731731
proc = subprocess.Popen(
732-
[python, "-m", "uvicorn", "jupyter_releaser.mock_github:app", "--port", str(port)] # noqa: S603
732+
[python, "-m", "uvicorn", "jupyter_releaser.mock_github:app", "--port", str(port)], # noqa: S603
733+
stdout=subprocess.DEVNULL,
734+
stderr=subprocess.DEVNULL,
733735
)
734736

735737
try:

0 commit comments

Comments
 (0)