Skip to content

Commit b9b11b0

Browse files
committed
remove capture output
1 parent 3f9b48c commit b9b11b0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.generator/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ def _run_nox_sessions(sessions: List[str]):
148148
"-f",
149149
f"{SOURCE_DIR}/packages/{library_id}",
150150
]
151-
result = subprocess.run(command, capture_output=True, text=True, check=True)
151+
result = subprocess.run(command, text=True, check=True)
152152
logger.info(result)
153153
except Exception as e:
154154
raise ValueError(f"Failed to run the nox session: {current_session}") from e

0 commit comments

Comments
 (0)