Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃悰 Fix setting FORCE_TERMINAL with colors #423

Merged
merged 1 commit into from Jul 12, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
15 changes: 10 additions & 5 deletions typer/rich_utils.py
Expand Up @@ -71,12 +71,17 @@
Literal["auto", "standard", "256", "truecolor", "windows"]
] = "auto" # Set to None to disable colors
_TYPER_FORCE_DISABLE_TERMINAL = getenv("_TYPER_FORCE_DISABLE_TERMINAL")
FORCE_TERMINAL = bool(
not _TYPER_FORCE_DISABLE_TERMINAL
and getenv("GITHUB_ACTIONS")
or getenv("FORCE_COLOR")
or getenv("PY_COLORS")
FORCE_TERMINAL = (
True
if getenv("GITHUB_ACTIONS") or getenv("FORCE_COLOR") or getenv("PY_COLORS")
else None
)
if _TYPER_FORCE_DISABLE_TERMINAL:
FORCE_TERMINAL = False

print(FORCE_TERMINAL)

print(FORCE_TERMINAL)

# Fixed strings
DEPRECATED_STRING = "(deprecated) "
Expand Down