Skip to content

Commit 8c7b413

Browse files
committed
Colorize Sphinx output
1 parent 6e4e79e commit 8c7b413

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

noxfile.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,9 @@ def build(session, autobuild=False):
2020
extra_args = "-H", "0.0.0.0"
2121
else:
2222
command = "sphinx-build"
23-
extra_args = ()
23+
extra_args = (
24+
"--color", # colorize the output, unsupported by autobuild
25+
)
2426

2527
session.run(
2628
command, *extra_args,

0 commit comments

Comments
 (0)