Skip to content
This repository was archived by the owner on May 21, 2025. It is now read-only.

update to support Appveyor Ubuntu image, which has lower case 'true's… #188

Merged
Merged
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/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -405,7 +405,7 @@ def main(*argv, **kwargs):
# --------
# AppVeyor
# --------
elif os.getenv('CI') == "True" and os.getenv('APPVEYOR') == 'True':
elif os.getenv('CI', 'false').lower() == 'true' and os.getenv('APPVEYOR', 'false').lower() == 'true':
# http://www.appveyor.com/docs/environment-variables
query.update(dict(branch=os.getenv('APPVEYOR_REPO_BRANCH'),
service="appveyor",
Expand Down