Skip to content

Commit

Permalink
feat(circleci): support parallel builds (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
caleb15 committed Aug 12, 2020
1 parent 30e4815 commit 5e05654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coveralls/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def load_config_from_buildkite():
@staticmethod
def load_config_from_circle():
pr = os.environ.get('CI_PULL_REQUEST', '').split('/')[-1] or None
return 'circle-ci', os.environ.get('CIRCLE_BUILD_NUM'), None, pr
return 'circle-ci', os.environ.get('CIRCLE_BUILD_NUM'), os.environ.get('CIRCLE_WORKFLOW_ID'), pr

def load_config_from_github(self):
service = 'github'
Expand Down

0 comments on commit 5e05654

Please sign in to comment.