Skip to content
This repository was archived by the owner on Jul 16, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion codecov_cli/helpers/ci_adapters/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def detect(self) -> bool:
return s.returncode == SUCCESS

def _get_branch(self):
return os.getenv("GIT_BRANCH") or os.getenv("BRANCH_NAME")
return os.getenv("GIT_BRANCH") or os.getenv("CIRCLE_BRANCH") or os.getenv("BRANCH_NAME")

def _get_build_code(self):
return None
Expand Down