Skip to content
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 invocations/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def in_ci():
specifically whether they exist and are non-empty. The actual value is not
currently relevant, as long as it's not the empty string.
"""
for sentinel in ("CIRCLECI", "TRAVIS"):
for sentinel in ("CIRCLECI", "TRAVIS", "YOUR_JENKINS_URL", "CI", "CI_REPOSITORY_URL"):
if os.environ.get(sentinel, False):
return True
return False