Skip to content

Commit

Permalink
Merge pull request #65 from chaselee/patch-1
Browse files Browse the repository at this point in the history
Add Codeship support
  • Loading branch information
coagulant committed Mar 3, 2015
2 parents e5ae467 + 1dbc59a commit 9d3f094
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coveralls/api.py
Expand Up @@ -194,7 +194,7 @@ def git_info(self):
'committer_email': gitlog('%ce'),
'message': gitlog('%s'),
},
'branch': os.environ.get('CIRCLE_BRANCH') or os.environ.get('TRAVIS_BRANCH', rev),
'branch': os.environ.get('CIRCLE_BRANCH') or os.environ.get('CI_BRANCH') or os.environ.get('TRAVIS_BRANCH', rev),
#origin git@github.com:coagulant/coveralls-python.git (fetch)
'remotes': [{'name': line.split()[0], 'url': line.split()[1]}
for line in run_command('git', 'remote', '-v').splitlines() if '(fetch)' in line]
Expand Down

0 comments on commit 9d3f094

Please sign in to comment.