From 5e05654c4e315b3915b860ecc1540a5fae9cf059 Mon Sep 17 00:00:00 2001 From: Caleb Collins-Parks <46505081+caleb15@users.noreply.github.com> Date: Tue, 11 Aug 2020 18:11:58 -0700 Subject: [PATCH] feat(circleci): support parallel builds (#233) --- coveralls/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coveralls/api.py b/coveralls/api.py index 82553e61..946fd479 100644 --- a/coveralls/api.py +++ b/coveralls/api.py @@ -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'