Skip to content

Commit 6a6e2ce

Browse files
authored
Update workflow (#233)
# Motivation <!-- Why is this change necessary? --> # Content <!-- Please include a summary of the change --> # Testing <!-- How was the change tested? --> # Please check the following before marking your PR as ready for review - [ ] I have added tests for my changes - [ ] I have updated the documentation or added new documentation as needed
1 parent 24b6ca4 commit 6a6e2ce

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.circleci/config.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ commands:
181181
TESTS_TO_RUN=$(cat codecov_ats/tests_to_run.txt)
182182
echo $TESTS_TO_RUN
183183
echo $TESTS_TO_RUN | circleci tests run --command "xargs uv run --frozen pytest --cov \
184-
-o junit_suite_name="${CIRCLE_JOB}" \
184+
-o junit_suite_name="${CIRCLE_JOB}-${CIRCLE_NODE_INDEX}" \
185185
-n auto \
186186
-vv \
187187
--cov \
@@ -197,14 +197,15 @@ commands:
197197
cat codecov_ats/tests_to_run.txt | xargs uv run --frozen pytest \
198198
--cov \
199199
-vv \
200-
-o junit_suite_name="${CIRCLE_JOB}" \
200+
-o junit_suite_name="${CIRCLE_JOB}-${CIRCLE_NODE_INDEX}" \
201201
-n auto \
202202
--cov-append \
203203
<<parameters.collect_args>>
204204
- upload-tests
205205
- codecov/upload:
206206
flags: <<parameters.codecov_flags>>
207207
plugins: pycoverage,compress-pycoverage
208+
files: coverage.codecov.json
208209
# Define a job to be invoked later in a workflow.
209210
# See: https://circleci.com/docs/jobs-steps/#jobs-overview & https://circleci.com/docs/configuration-reference/#jobs
210211
jobs:

0 commit comments

Comments
 (0)